mirror of
https://github.com/ankitects/anki.git
synced 2025-09-24 16:56:36 -04:00
only macs seem to require the shift+tab fix
This commit is contained in:
parent
375c071a26
commit
53fb3b0e8c
1 changed files with 2 additions and 1 deletions
|
@ -34,7 +34,8 @@ function onKey() {
|
|||
return;
|
||||
}
|
||||
// shift+tab goes to previous field
|
||||
if (window.event.which === 9 && window.event.shiftKey) {
|
||||
if (navigator.platform === "MacIntel" &&
|
||||
window.event.which === 9 && window.event.shiftKey) {
|
||||
focusPrevious();
|
||||
return;
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue