mirror of
https://github.com/ankitects/anki.git
synced 2025-09-25 01:06:35 -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;
|
return;
|
||||||
}
|
}
|
||||||
// shift+tab goes to previous field
|
// 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();
|
focusPrevious();
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue