Skip to content

Commit c40a40f

Browse files
committed
Formatting
1 parent 3da2420 commit c40a40f

File tree

5 files changed

+249
-92
lines changed

5 files changed

+249
-92
lines changed

packages-exp/auth-exp/demo/src/index.js

Lines changed: 7 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1234,8 +1234,8 @@ function signInWithPopupRedirect(provider) {
12341234
var glob = {
12351235
signInWithPopup,
12361236
linkWithPopup,
1237-
reauthenticateWithPopup,
1238-
}
1237+
reauthenticateWithPopup
1238+
};
12391239
var action = $('input[name=popup-redirect-action]:checked').val();
12401240
var type = $('input[name=popup-redirect-type]:checked').val();
12411241
var method = null;
@@ -1291,13 +1291,16 @@ function signInWithPopupRedirect(provider) {
12911291
console.log('Provider:');
12921292
console.log(provider);
12931293
if (type == 'popup') {
1294-
glob[method](inst, provider, browserPopupRedirectResolver).then(function(response) {
1294+
glob[method](inst, provider, browserPopupRedirectResolver).then(function(
1295+
response
1296+
) {
12951297
console.log('Popup response:');
12961298
console.log(response);
12971299
alertSuccess(action + ' with ' + provider['providerId'] + ' successful!');
12981300
logAdditionalUserInfo(response);
12991301
onAuthSuccess(activeUser());
1300-
}, onAuthError);
1302+
},
1303+
onAuthError);
13011304
} else {
13021305
alertNotImplemented();
13031306
// try {

0 commit comments

Comments
 (0)