mirror of
https://github.com/bitwarden/browser
synced 2025-12-22 11:13:46 +00:00
formatting
This commit is contained in:
@@ -103,7 +103,7 @@ function initAutofill() {
|
||||
fillScript.autosubmit = { focusOpid: password.opid };
|
||||
}
|
||||
}
|
||||
else if (passwordFields.length == 1) {
|
||||
else if (passwordFields.length === 1) {
|
||||
// The page does not have any forms with password fields. Use the one password field on the page and the
|
||||
// input field just before it as the username.
|
||||
|
||||
|
||||
@@ -99,6 +99,8 @@ function initTokenService() {
|
||||
throw 'Illegal base64url string!';
|
||||
}
|
||||
}
|
||||
return window.decodeURIComponent(escape(window.atob(output))); //polyfill https://github.com/davidchambers/Base64.js
|
||||
|
||||
//polyfill https://github.com/davidchambers/Base64.js
|
||||
return window.decodeURIComponent(escape(window.atob(output)));
|
||||
};
|
||||
};
|
||||
|
||||
Reference in New Issue
Block a user