1
0
mirror of https://github.com/bitwarden/browser synced 2025-12-14 15:23:33 +00:00

Merge pull request #1356 from bitwarden/feature/701-safari-autofill-cmd-binding

Added Cmd+Shift+P for autofill in safari
This commit is contained in:
Chad Scharf
2020-08-12 17:25:30 -04:00
committed by GitHub

View File

@@ -20,7 +20,7 @@ document.addEventListener('DOMContentLoaded', (event) => {
let autofillCommand = ['mod+shift+l']; let autofillCommand = ['mod+shift+l'];
if (isSafari) { if (isSafari) {
autofillCommand = ['mod+\\', 'mod+8']; autofillCommand = ['mod+\\', 'mod+8', 'mod+shift+p'];
} else if (isEdge) { } else if (isEdge) {
autofillCommand = ['mod+\\', 'mod+9']; autofillCommand = ['mod+\\', 'mod+9'];
} }