From bd07f69a238428849de32ec6c1e7492f6c232247 Mon Sep 17 00:00:00 2001 From: Timotej Lazar Date: Tue, 1 Mar 2016 20:44:14 +0100 Subject: Minor cleanups around the loadProblemData function --- js/codeq/prolog.js | 7 +++---- 1 file changed, 3 insertions(+), 4 deletions(-) (limited to 'js/codeq/prolog.js') diff --git a/js/codeq/prolog.js b/js/codeq/prolog.js index 18e3fdd..1be339f 100644 --- a/js/codeq/prolog.js +++ b/js/codeq/prolog.js @@ -33,16 +33,15 @@ along with this program. If not, see . */ navigationProlog.addClass("active"); navigationProlog.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 prologHandler = createPrologHandler(problemDef, commonDef, currentSolution); }; codeq.globalStateMachine.register('prolog', { '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); -- cgit v1.2.1