ok this should fix

This commit is contained in:
Jacob Levine 2019-02-09 13:33:14 -06:00
parent 290110274b
commit 2c9951d2c9

View File

@ -13,7 +13,6 @@ function closeNav() {
} }
window.onload = function() { window.onload = function() {
var promise1 = new Promise(function(resolve, reject) {
document.getElementById('sideload').style.display = 'block'; document.getElementById('sideload').style.display = 'block';
var config = { var config = {
apiKey: "(insert the TitanScout Api Key Here)", apiKey: "(insert the TitanScout Api Key Here)",
@ -25,13 +24,7 @@ window.onload = function() {
}; };
//eventually find a less-jank way to do this tho //eventually find a less-jank way to do this tho
firebase.initializeApp(config); firebase.initializeApp(config);
setTimeout(function(){ firebase.auth().onAuthStateChanged(function(user) {
user = firebase.auth().currentUser
resolve(user)
},10)
});
promise1.then(function(user) {
if (user != null) { if (user != null) {
if (user.displayName != null) { if (user.displayName != null) {
document.getElementById('status').innerHTML = "You are signed in as: " + user.displayName; document.getElementById('status').innerHTML = "You are signed in as: " + user.displayName;