mirror of
https://github.com/bitwarden/browser.git
synced 2024-11-09 09:51:02 +01:00
copy totp to clipboard before closing popup
This commit is contained in:
parent
966927fe3c
commit
690d94d142
@ -83,8 +83,7 @@ angular
|
|||||||
chrome.tabs.sendMessage(tabId, {
|
chrome.tabs.sendMessage(tabId, {
|
||||||
command: 'fillForm',
|
command: 'fillForm',
|
||||||
fillScript: fillScript
|
fillScript: fillScript
|
||||||
}, { frameId: pageDetails[i].frameId }, $window.close);
|
}, { frameId: pageDetails[i].frameId }, function () {
|
||||||
|
|
||||||
if (login.totp && tokenService.getPremium()) {
|
if (login.totp && tokenService.getPremium()) {
|
||||||
totpService.isAutoCopyEnabled().then(function (enabled) {
|
totpService.isAutoCopyEnabled().then(function (enabled) {
|
||||||
if (enabled) {
|
if (enabled) {
|
||||||
@ -96,8 +95,14 @@ angular
|
|||||||
if (code) {
|
if (code) {
|
||||||
utilsService.copyToClipboard(code);
|
utilsService.copyToClipboard(code);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
$window.close();
|
||||||
});
|
});
|
||||||
}
|
}
|
||||||
|
else {
|
||||||
|
$window.close();
|
||||||
|
}
|
||||||
|
});
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user