summaryrefslogtreecommitdiff
path: root/js/codeq/robot.js
diff options
context:
space:
mode:
Diffstat (limited to 'js/codeq/robot.js')
-rw-r--r--js/codeq/robot.js4
1 files changed, 2 insertions, 2 deletions
diff --git a/js/codeq/robot.js b/js/codeq/robot.js
index 8512df7..5936d56 100644
--- a/js/codeq/robot.js
+++ b/js/codeq/robot.js
@@ -17,7 +17,7 @@ along with this program. If not, see <http://www.gnu.org/licenses/>. */
(function() {
"use strict";
var jqScreen = $('#screen-robot'), // the screen container element
- jqConsole = jqScreen.find('.block3'),
+ jqConsole = jqScreen.find('.block-console'),
jqBtnPlan = jqScreen.find('.btn-plan'),
jqBtnHint = jqScreen.find('.btn-hint').ladda(),
jqBtnRun = jqScreen.find('.btn-run'),
@@ -77,7 +77,7 @@ along with this program. If not, see <http://www.gnu.org/licenses/>. */
});
var createRobotHandler = function (problemDef, commonDef, currentSolution) {
- var jqEditor = jqScreen.find('.code_editor'),
+ var jqEditor = jqScreen.find('.code-editor'),
jqHints = jqScreen.find('.hints'),
jqStatus = jqConsole.find('.status'),
jqTerminal = jqConsole.find('.console'),