more bugfix

This commit is contained in:
jlevine18 2019-02-06 15:37:27 -06:00 committed by GitHub
parent 317ca72377
commit 5de2528d34
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -13,7 +13,7 @@ var uiConfig = {
callbacks: { callbacks: {
signInSuccessWithAuthResult: function(authResult, redirectUrl) { signInSuccessWithAuthResult: function(authResult, redirectUrl) {
if (authResult.user) { if (authResult.user) {
SignedInUser(authResult.user); handleSignedInUser(authResult.user);
} }
return false; return false;
} }
@ -201,6 +201,6 @@ function upProfileInfo() {
setTimeout(function() { setTimeout(function() {
alert('Please sign in to change your account info.'); alert('Please sign in to change your account info.');
}, 1); }, 1);
SignedOutUser(); handleSignedOutUser();
} }
} }