mirror of
https://github.com/bitwarden/browser.git
synced 2024-11-02 08:40:08 +01:00
cmd + 8 to autofill for safari (#1292)
This commit is contained in:
parent
29b370961e
commit
6e04920180
@ -18,7 +18,12 @@ document.addEventListener('DOMContentLoaded', (event) => {
|
||||
return false;
|
||||
};
|
||||
|
||||
const autofillCommand = isSafari || isEdge ? ['mod+\\', 'mod+9'] : ['mod+shift+l'];
|
||||
let autofillCommand = ['mod+shift+l'];
|
||||
if (isSafari) {
|
||||
autofillCommand = ['mod+\\', 'mod+8'];
|
||||
} else if (isEdge) {
|
||||
autofillCommand = ['mod+\\', 'mod+9'];
|
||||
}
|
||||
Mousetrap.bind(autofillCommand, () => {
|
||||
sendMessage('autofill_login');
|
||||
});
|
||||
|
Loading…
Reference in New Issue
Block a user