From: zuber Date: Tue, 18 Aug 2009 15:03:04 +0000 (+0200) Subject: Dodanie możliwości ustalania skrótów klawiszowych (z CTRL) dla przycisków wstawiający... X-Git-Url: https://git.mdrn.pl/redakcja.git/commitdiff_plain/96d78af15cef247c2db8c8895c2bb57f459470f9?ds=sidebyside;hp=0beb0bf8e1f061894f48523e5d134c6b923f4c32 Dodanie możliwości ustalania skrótów klawiszowych (z CTRL) dla przycisków wstawiających tagi. --- 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(); diff --git a/project/templates/explorer/file_xml.html b/project/templates/explorer/file_xml.html index e9cd85c0..c23ad41f 100644 --- a/project/templates/explorer/file_xml.html +++ b/project/templates/explorer/file_xml.html @@ -5,15 +5,7 @@ -