From 8add00aa44fa0b4d7e83b3d6074140e87c628479 Mon Sep 17 00:00:00 2001 From: Timotej Lazar Date: Tue, 1 Mar 2016 20:30:56 +0100 Subject: Check that {prolog,python,robot}Handler exists before destroying it --- js/codeq/prolog.js | 5 ++--- js/codeq/python.js | 5 ++--- js/codeq/robot.js | 5 ++--- 3 files changed, 6 insertions(+), 9 deletions(-) diff --git a/js/codeq/prolog.js b/js/codeq/prolog.js index 1b8d3c3..18e3fdd 100644 --- a/js/codeq/prolog.js +++ b/js/codeq/prolog.js @@ -47,8 +47,7 @@ along with this program. If not, see . */ .fail(function (reason) { codeq.log.error('Failed to obtain the problem definition: ' + reason, reason); alert('Failed to obtain the problem definition: ' + reason); - - history.back();//TODO test + history.back(); }) .done(); }, @@ -59,7 +58,7 @@ along with this program. If not, see . */ // end of experiment: Prolog hints jqScreen.css('display', 'none'); - prologHandler.destroy(); + if (prologHandler) prologHandler.destroy(); prologHandler = null; $('#navigation-problem-list').css('display', 'none'); diff --git a/js/codeq/python.js b/js/codeq/python.js index 893110b..05821e1 100644 --- a/js/codeq/python.js +++ b/js/codeq/python.js @@ -46,14 +46,13 @@ along with this program. If not, see . */ .fail(function (reason) { codeq.log.error('Failed to obtain the problem definition: ' + reason, reason); alert('Failed to obtain the problem definition: ' + reason); - - history.back();//TODO test + history.back(); }) .done(); }, 'exit': function () { jqScreen.css('display', 'none'); - pythonHandler.destroy(); + if (pythonHandler) pythonHandler.destroy(); pythonHandler = null; $('#navigation-problem-list').css('display', 'none'); diff --git a/js/codeq/robot.js b/js/codeq/robot.js index f64e4a0..70f7c5d 100644 --- a/js/codeq/robot.js +++ b/js/codeq/robot.js @@ -46,14 +46,13 @@ along with this program. If not, see . */ .fail(function (reason) { codeq.log.error('Failed to obtain the problem definition: ' + reason, reason); alert('Failed to obtain the problem definition: ' + reason); - - history.back();//TODO test + history.back(); }) .done(); }, 'exit': function () { jqScreen.css('display', 'none'); - robotHandler.destroy(); + if (robotHandler) robotHandler.destroy(); robotHandler = null; $('#navigation-problem-list').css('display', 'none'); -- cgit v1.2.1