summaryrefslogtreecommitdiff
path: root/js/codeq/editor.js
diff options
context:
space:
mode:
authorTimotej Lazar <timotej.lazar@fri.uni-lj.si>2016-03-02 17:16:11 +0100
committerTimotej Lazar <timotej.lazar@fri.uni-lj.si>2016-03-02 17:16:11 +0100
commit9eb9da9a66c287f72b708cdc0700d28c6a14093f (patch)
tree55e51964a619a2a1e6b21d0ac6b058bafa46ae7d /js/codeq/editor.js
parentb2cf89bed3c975065b77be98fbf1125dbe8e69e7 (diff)
More CSS cleanups
Diffstat (limited to 'js/codeq/editor.js')
-rw-r--r--js/codeq/editor.js4
1 files changed, 2 insertions, 2 deletions
diff --git a/js/codeq/editor.js b/js/codeq/editor.js
index 157c70e..478e461 100644
--- a/js/codeq/editor.js
+++ b/js/codeq/editor.js
@@ -1,5 +1,5 @@
/* CodeQ: an online programming tutor.
- Copyright (C) 2015 UL FRI
+ Copyright (C) 2015,2016 UL FRI
This program is free software: you can redistribute it and/or modify it under
the terms of the GNU Affero General Public License as published by the Free
@@ -16,7 +16,7 @@ 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],
+ var statusBar = $(elt).siblings(".statusbar")[0],
updateStatusBar = function (pos) {
statusBar.innerHTML = 'line ' + (pos.line+1) + ', column ' + (pos.ch+1);
},