reverted one change

This commit is contained in:
Miodec 2021-03-12 17:42:07 +00:00
parent d8b7ac2b76
commit 84a4beb2ed

View file

@ -244,18 +244,6 @@ function signOut() {
});
}
function accountIconLoading(truefalse) {
if (truefalse) {
$("#top #menu .account .icon").html(
'<i class="fas fa-fw fa-spin fa-circle-notch"></i>'
);
$("#top #menu .account").css("opacity", 1).css("pointer-events", "none");
} else {
$("#top #menu .account .icon").html('<i class="fas fa-fw fa-user"></i>');
$("#top #menu .account").css("opacity", 1).css("pointer-events", "auto");
}
}
firebase.auth().onAuthStateChanged(function (user) {
if (user) {
// User is signed in.