diff options
Diffstat (limited to '')
-rw-r--r-- | public/js/index.js | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/public/js/index.js b/public/js/index.js index 26c1ed6a..b903a7ba 100644 --- a/public/js/index.js +++ b/public/js/index.js @@ -2906,19 +2906,19 @@ $(editor.getInputField()) $(this).data('autocompleting', true); editor.setOption("extraKeys", { "Up": function () { - return CodeMirror.PASS; + return CodeMirror.Pass; }, "Right": function () { editor.doc.cm.execCommand("goCharRight"); }, "Down": function () { - return CodeMirror.PASS; + return CodeMirror.Pass; }, "Left": function () { editor.doc.cm.execCommand("goCharLeft"); }, "Enter": function () { - return CodeMirror.PASS; + return CodeMirror.Pass; }, "Backspace": function () { editor.doc.cm.execCommand("delCharBefore"); |