diff options
author | Timotej Lazar <timotej.lazar@araneo.org> | 2015-10-01 14:41:47 +0200 |
---|---|---|
committer | Timotej Lazar <timotej.lazar@araneo.org> | 2015-10-01 14:41:47 +0200 |
commit | 02dd8336417cb89500905e98f954b9c97111096b (patch) | |
tree | f218b7d72856a8b5201f70aae1913631f57c8afd | |
parent | 4445c72f8034c8d569b8ac57a308e8703b7dbda2 (diff) |
Use 'value' option in CM constructor to set initial content
-rw-r--r-- | js/codeq/prolog.js | 4 | ||||
-rw-r--r-- | js/codeq/python.js | 4 | ||||
-rw-r--r-- | js/codeq/robot.js | 4 |
3 files changed, 6 insertions, 6 deletions
diff --git a/js/codeq/prolog.js b/js/codeq/prolog.js index 6447b86..c549f09 100644 --- a/js/codeq/prolog.js +++ b/js/codeq/prolog.js @@ -260,7 +260,8 @@ jqTerminal = jqConsole.find('.console'), jqHints = jqInfo.find('.hints'), editor = codeq.makeEditor(jqEditor[0], { - mode: 'prolog' + mode: 'prolog', + value: currentSolution || '' }), activityHandler = makeActivityHandler(editor, problemDef.id), terminal = makePrologTerminalHandler(jqTerminal, editor, problemDef.id, activityHandler), @@ -271,7 +272,6 @@ codeq.tr.registerDictionary('prolog', problemDef.translations); codeq.tr.translateDom(jqScreen); - if (currentSolution) editor.setValue(currentSolution); // $('#screen_prolog .title').text(problem.slug); // jqDescriptionContent.html(problem.description); jqBtnPlan.prop('disabled', !hinter.hasNextPlan()); diff --git a/js/codeq/python.js b/js/codeq/python.js index 59e010a..440b5f7 100644 --- a/js/codeq/python.js +++ b/js/codeq/python.js @@ -219,7 +219,8 @@ jqHints = jqInfo.find('.hints'), editor = codeq.makeEditor(jqEditor[0], { mode: 'python', - indentUnit: 4 + indentUnit: 4, + value: currentSolution || '' }), activityHandler = makeActivityHandler(editor, problemDef.id), terminal = makePythonTerminalHandler(jqTerminal, editor, problemDef.id, activityHandler), @@ -230,7 +231,6 @@ codeq.tr.registerDictionary('python', problemDef.translations); codeq.tr.translateDom(jqScreen); - if (currentSolution) editor.setValue(currentSolution); // $('#screen_python .title').text(problem.slug); // jqDescriptionContent.html(problem.description); jqBtnPlan.prop('disabled', !hinter.hasNextPlan()); 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) { |