summaryrefslogtreecommitdiff
path: root/js/codeq/prolog.js
diff options
context:
space:
mode:
Diffstat (limited to 'js/codeq/prolog.js')
-rw-r--r--js/codeq/prolog.js7
1 files changed, 3 insertions, 4 deletions
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 <http://www.gnu.org/licenses/>. */
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);