1
0
mirror of https://github.com/bitwarden/browser synced 2025-12-17 16:53:34 +00:00

skip autofill username option

This commit is contained in:
Kyle Spearrin
2017-10-07 13:10:04 -04:00
parent ad66d15a33
commit 7561ae4996
3 changed files with 34 additions and 18 deletions

View File

@@ -74,7 +74,11 @@ angular
toastr.error(i18nService.autofillError);
}
autofillService.doAutoFill(login, pageDetails, false).then(function (totpCode) {
autofillService.doAutoFill({
login: login,
pageDetails: pageDetails,
fromBackground: false
}).then(function (totpCode) {
$analytics.eventTrack('Autofilled');
if (totpCode && utilsService.isFirefox()) {
utilsService.copyToClipboard(totpCode, document);