@@ -1087,7 +1087,6 @@ function handleMultiFactorSignIn(resolver) {
1087
1087
function showMultiFactors ( $listGroup , multiFactorInfo , onClick , onDelete ) {
1088
1088
// Append entry to list.
1089
1089
$listGroup . empty ( ) ;
1090
- console . log ( "showMultiFactors" ) ;
1091
1090
$ . each ( multiFactorInfo , i => {
1092
1091
// Append entry to list.
1093
1092
const info = multiFactorInfo [ i ] ;
@@ -1135,7 +1134,6 @@ function showMultiFactors($listGroup, multiFactorInfo, onClick, onDelete) {
1135
1134
function onSelectMultiFactorHint ( index ) {
1136
1135
// Hide all forms for handling each type of second factors.
1137
1136
// Currently only phone is supported.
1138
- console . log ( "onSelectMultiFactorHint called" , multiFactorErrorResolver . hints [ index ] . factorId ) ;
1139
1137
$ ( '#multi-factor-phone' ) . addClass ( 'hidden' ) ;
1140
1138
$ ( '#multi-factor-totp' ) . addClass ( 'hidden' ) ;
1141
1139
if (
@@ -1165,7 +1163,6 @@ function onSelectMultiFactorHint(index) {
1165
1163
$ ( '#multi-factor-totp' ) . removeClass ( 'hidden' ) ;
1166
1164
// Clear all input.
1167
1165
$ ( '#multi-factor-totp-sign-in-verification-code' ) . val ( '' ) ;
1168
- console . log ( "code" , $ ( '#multi-factor-totp-sign-in-verification-code' ) . val ( ) ) ;
1169
1166
}
1170
1167
else {
1171
1168
// 2nd factor not found or not supported by app.
@@ -1228,10 +1225,7 @@ function onFinalizeSignInWithPhoneMultiFactor(event) {
1228
1225
function onFinalizeSignInWithTotpMultiFactor ( event ) {
1229
1226
event . preventDefault ( ) ;
1230
1227
// Make sure a second factor is selected.
1231
- console . log ( selectedMultiFactorHint , multiFactorErrorResolver ) ;
1232
1228
const otp = $ ( '#multi-factor-totp-sign-in-verification-code' ) . val ( ) ;
1233
- console . log ( "otp " , otp ) ;
1234
- console . log ( $ ( '#multiFactorModal :input' ) ) ;
1235
1229
if ( ! otp || ! selectedMultiFactorHint || ! multiFactorErrorResolver ) {
1236
1230
return ;
1237
1231
}
@@ -1372,7 +1366,6 @@ function signInWithPopupRedirect(provider) {
1372
1366
customParameters [ key ] = value ;
1373
1367
}
1374
1368
} ) ;
1375
- console . log ( 'customParameters: ' , customParameters ) ;
1376
1369
// For older jscore versions that do not support this.
1377
1370
if ( provider . setCustomParameters ) {
1378
1371
// Set custom parameters on current provider.
0 commit comments