File tree Expand file tree Collapse file tree 5 files changed +249
-92
lines changed Expand file tree Collapse file tree 5 files changed +249
-92
lines changed Original file line number Diff line number Diff line change @@ -1234,8 +1234,8 @@ function signInWithPopupRedirect(provider) {
1234
1234
var glob = {
1235
1235
signInWithPopup,
1236
1236
linkWithPopup,
1237
- reauthenticateWithPopup,
1238
- }
1237
+ reauthenticateWithPopup
1238
+ } ;
1239
1239
var action = $ ( 'input[name=popup-redirect-action]:checked' ) . val ( ) ;
1240
1240
var type = $ ( 'input[name=popup-redirect-type]:checked' ) . val ( ) ;
1241
1241
var method = null ;
@@ -1291,13 +1291,16 @@ function signInWithPopupRedirect(provider) {
1291
1291
console . log ( 'Provider:' ) ;
1292
1292
console . log ( provider ) ;
1293
1293
if ( type == 'popup' ) {
1294
- glob [ method ] ( inst , provider , browserPopupRedirectResolver ) . then ( function ( response ) {
1294
+ glob [ method ] ( inst , provider , browserPopupRedirectResolver ) . then ( function (
1295
+ response
1296
+ ) {
1295
1297
console . log ( 'Popup response:' ) ;
1296
1298
console . log ( response ) ;
1297
1299
alertSuccess ( action + ' with ' + provider [ 'providerId' ] + ' successful!' ) ;
1298
1300
logAdditionalUserInfo ( response ) ;
1299
1301
onAuthSuccess ( activeUser ( ) ) ;
1300
- } , onAuthError ) ;
1302
+ } ,
1303
+ onAuthError ) ;
1301
1304
} else {
1302
1305
alertNotImplemented ( ) ;
1303
1306
// try {
You can’t perform that action at this time.
0 commit comments