diff --git a/web/editor.js b/web/editor.js index 8bed7ae9d..b01928a19 100644 --- a/web/editor.js +++ b/web/editor.js @@ -36,6 +36,7 @@ function onKey() { // shift+tab goes to previous field if (navigator.platform === "MacIntel" && window.event.which === 9 && window.event.shiftKey) { + window.event.preventDefault(); focusPrevious(); return; }