summaryrefslogtreecommitdiff
path: root/js/codeq/robot.js
diff options
context:
space:
mode:
authorAleš Smodiš <aless@guru.si>2015-10-01 14:44:53 +0200
committerAleš Smodiš <aless@guru.si>2015-10-01 14:44:53 +0200
commit82c30c79c7c000bef57a9de2d3f8372b4dc3f213 (patch)
treed5b18b4585c653c28d9c3587af9b39f650097115 /js/codeq/robot.js
parent4faf13f8b41e896e8bd4a36488707e0263096e8d (diff)
parent02dd8336417cb89500905e98f954b9c97111096b (diff)
Merge branch 'master' of ssh://212.235.189.51:22122/codeq-web
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 f2f4a9b..1752f31 100644
--- a/js/codeq/robot.js
+++ b/js/codeq/robot.js
@@ -193,7 +193,8 @@
jqHints = jqInfo.find('.hints'),
editor = codeq.makeEditor(jqEditor[0], {
mode: 'python',
- indentUnit: 4
+ indentUnit: 4,
+ value: currentSolution || ''
}),
activityHandler = makeActivityHandler(editor, problemDef.id),
terminal = makeRobotTerminalHandler(jqTerminal, editor, problemDef.id, activityHandler),
@@ -204,7 +205,6 @@
codeq.tr.registerDictionary('robot', problemDef.translations);
codeq.tr.translateDom(jqScreen);
- if (currentSolution) editor.setValue(currentSolution);
jqBtnPlan.prop('disabled', !hinter.hasNextPlan());
editor.on('change', function (instance, changeObj) {