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.js7
1 files changed, 3 insertions, 4 deletions
diff --git a/js/codeq/robot.js b/js/codeq/robot.js
index 70f7c5d..4222d0b 100644
--- a/js/codeq/robot.js
+++ b/js/codeq/robot.js
@@ -31,7 +31,7 @@ along with this program. If not, see <http://www.gnu.org/licenses/>. */
navigationRobot.addClass("active");
navigationRobot.css('display', '');
- jqScreen.css('display', '');//we have to show the screen now so the code editor shows its initial values correctly
+ jqScreen.css('display', ''); // we have to show the screen now so the code editor shows its initial values correctly
robotHandler = createRobotHandler(problemDef, commonDef, currentSolution);
};
@@ -39,9 +39,8 @@ along with this program. If not, see <http://www.gnu.org/licenses/>. */
'jqScreen': jqScreen,
'enter': function (ref, data) {
- codeq.loadProblemData(ref,data).then(function(problem){
- //codeq.log.debug("then:"+JSON.stringify(problem));
- enterFun(problem.generalProblemData,data.commonDef,problem.solution);
+ codeq.loadProblemData(ref, data).then(function (problem) {
+ enterFun(problem.generalProblemData, data.commonDef, problem.solution);
})
.fail(function (reason) {
codeq.log.error('Failed to obtain the problem definition: ' + reason, reason);