mirror of
https://github.com/titanscouting/tra-analysis.git
synced 2024-12-27 01:59:08 +00:00
fix more typos
This commit is contained in:
parent
dd5da3b1e8
commit
4f3ecf4361
@ -30,37 +30,36 @@ window.onload = function() {
|
|||||||
};
|
};
|
||||||
firebase.initializeApp(config);
|
firebase.initializeApp(config);
|
||||||
firebase.auth().onAuthStateChanged(function(user) {
|
firebase.auth().onAuthStateChanged(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;
|
||||||
document.getElementById('newDN').innerHTML = user.displayName;
|
document.getElementById('newDN').innerHTML = user.displayName;
|
||||||
} else if (user.email != null) {
|
} else if (user.email != null) {
|
||||||
document.getElementById('status').innerHTML = "You are signed in as: " + user.email;
|
document.getElementById('status').innerHTML = "You are signed in as: " + user.email;
|
||||||
} else if (user.phoneNumber != null) {
|
} else if (user.phoneNumber != null) {
|
||||||
document.getElementById('status').innerHTML = "You are signed in as: " + user.phoneNumber;
|
document.getElementById('status').innerHTML = "You are signed in as: " + user.phoneNumber;
|
||||||
} else {
|
} else {
|
||||||
document.getElementById('status').innerHTML = "You are signed in.";
|
document.getElementById('status').innerHTML = "You are signed in.";
|
||||||
}
|
}
|
||||||
if (user.email != null) {
|
if (user.email != null) {
|
||||||
document.getElementById('newEM').innerHTML = user.email;
|
document.getElementById('newEM').innerHTML = user.email;
|
||||||
|
}
|
||||||
|
} else {
|
||||||
|
window.location.replace('../');
|
||||||
|
}
|
||||||
|
teamAssoc = firebase.firestore().collections('UserAssociations').doc(user.uid);
|
||||||
|
teamAssoc.get().then(function(doc) {
|
||||||
|
if (doc.exists) {
|
||||||
|
list = doc.data()
|
||||||
|
teamNums = Object.keys(list)
|
||||||
|
document.getElementById(teammem).innerHTML = ""
|
||||||
|
for i in teamNums() {
|
||||||
|
document.getElementById(teammem).innerHTML += "<tr><td>" + i + "</td><td>" + list.i + "</td></tr>"
|
||||||
}
|
}
|
||||||
} else {
|
} else {
|
||||||
window.location.replace('../');
|
document.getElementById(teammem).innerHTML = "<tr><td>You are not part of any teams</td></tr>"
|
||||||
}
|
}
|
||||||
teamAssoc = firebase.firestore().collections('UserAssociations').doc(user.uid);
|
})
|
||||||
teamAssoc.get().then(function(doc) {
|
|
||||||
if (doc.exists)
|
|
||||||
} {
|
|
||||||
list = doc.data()
|
|
||||||
teamNums = Object.keys(list)
|
|
||||||
document.getElementById(teammem).innerHTML = ""
|
|
||||||
for i in teamNums() {
|
|
||||||
document.getElementById(teammem).innerHTML += "<tr><td>" + i + "</td><td>" + list.i + "</td></tr>"
|
|
||||||
}
|
|
||||||
} else {
|
|
||||||
document.getElementById(teammem).innerHTML = "<tr><td>You are not part of any teams</td></tr>"
|
|
||||||
}
|
|
||||||
})
|
|
||||||
});
|
});
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user