X-Git-Url: https://git.mdrn.pl/redakcja.git/blobdiff_plain/0beb0bf8e1f061894f48523e5d134c6b923f4c32..96d78af15cef247c2db8c8895c2bb57f459470f9:/project/static/js/codemirror/editor.js diff --git a/project/static/js/codemirror/editor.js b/project/static/js/codemirror/editor.js index b8b7abc8..757d3eaf 100644 --- a/project/static/js/codemirror/editor.js +++ b/project/static/js/codemirror/editor.js @@ -656,7 +656,7 @@ var Editor = (function(){ // Intercept enter and tab, and assign their new functions. keyDown: function(event) { if (this.frozen == "leave") this.frozen = null; - if (this.frozen && (!this.keyFilter || this.keyFilter(event.keyCode))) { + if (this.frozen && (!this.keyFilter || this.keyFilter(event))) { event.stop(); this.frozen(event); return; @@ -734,7 +734,7 @@ var Editor = (function(){ // keydown event does not prevent the associated keypress event // from happening, so we have to cancel enter and tab again // here. - if ((this.frozen && (!this.keyFilter || this.keyFilter(event.keyCode))) || + if ((this.frozen && (!this.keyFilter || this.keyFilter(event))) || event.code == 13 || (event.code == 9 && this.options.tabMode != "default") || (event.keyCode == 32 && event.shiftKey && this.options.tabMode == "default")) event.stop();