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.js14
1 files changed, 9 insertions, 5 deletions
diff --git a/js/codeq/robot.js b/js/codeq/robot.js
index be164ee..88e889d 100644
--- a/js/codeq/robot.js
+++ b/js/codeq/robot.js
@@ -136,11 +136,15 @@
var jqDescriptionContent = jqDescription.find('.description'),
jqEditor = jqCode.find('.code_editor'),
jqHints = jqInfo.find('.hints'),
- editor = codeq.makeEditor(jqEditor[0], {
- mode: 'python',
- indentUnit: 4,
- value: currentSolution || ''
- }),
+ editor = codeq.makeEditor(jqEditor[0],
+ {
+ mode: 'python',
+ indentUnit: 4,
+ value: currentSolution || ''
+ },
+ function () {
+ jqBtnRun.focus();
+ }),
activityHandler = codeq.makeActivityHandler(editor, problemDef.id),
hinter = codeq.makeHinter(jqHints, jqEditor, editor, 'robot_hints', problemDef, commonDef),
commError = function (error) {