mirror of
https://github.com/titanscouting/tra-analysis.git
synced 2024-11-10 06:54:44 +00:00
ok this should fix
This commit is contained in:
parent
290110274b
commit
2c9951d2c9
@ -13,7 +13,6 @@ function closeNav() {
|
||||
}
|
||||
|
||||
window.onload = function() {
|
||||
var promise1 = new Promise(function(resolve, reject) {
|
||||
document.getElementById('sideload').style.display = 'block';
|
||||
var config = {
|
||||
apiKey: "(insert the TitanScout Api Key Here)",
|
||||
@ -25,13 +24,7 @@ window.onload = function() {
|
||||
};
|
||||
//eventually find a less-jank way to do this tho
|
||||
firebase.initializeApp(config);
|
||||
setTimeout(function(){
|
||||
user = firebase.auth().currentUser
|
||||
resolve(user)
|
||||
},10)
|
||||
|
||||
});
|
||||
promise1.then(function(user) {
|
||||
firebase.auth().onAuthStateChanged(function(user) {
|
||||
if (user != null) {
|
||||
if (user.displayName != null) {
|
||||
document.getElementById('status').innerHTML = "You are signed in as: " + user.displayName;
|
||||
|
Loading…
Reference in New Issue
Block a user