summaryrefslogtreecommitdiff
path: root/js/codeq/editor.js
diff options
context:
space:
mode:
Diffstat (limited to 'js/codeq/editor.js')
-rw-r--r--js/codeq/editor.js1
1 files changed, 1 insertions, 0 deletions
diff --git a/js/codeq/editor.js b/js/codeq/editor.js
index 4b0ba6f..157c70e 100644
--- a/js/codeq/editor.js
+++ b/js/codeq/editor.js
@@ -15,6 +15,7 @@ You should have received a copy of the GNU Affero General Public License
along with this program. If not, see <http://www.gnu.org/licenses/>. */
codeq.makeEditor = function (elt, options, onEscape) {
+ "use strict";
var statusBar = $(elt).siblings(".block-statusbar")[0],
updateStatusBar = function (pos) {
statusBar.innerHTML = 'line ' + (pos.line+1) + ', column ' + (pos.ch+1);