From af6f38e8ad6bfcc5410646ee070d05f8ab0783db Mon Sep 17 00:00:00 2001 From: Timotej Lazar Date: Fri, 26 Feb 2016 17:03:53 +0100 Subject: Use a consistent naming style for DOM IDs --- js/codeq/robot.js | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) (limited to 'js/codeq/robot.js') diff --git a/js/codeq/robot.js b/js/codeq/robot.js index 43bfb12..3e561a1 100644 --- a/js/codeq/robot.js +++ b/js/codeq/robot.js @@ -16,7 +16,7 @@ along with this program. If not, see . */ (function() { "use strict"; - var jqScreen = $('#screen_robot'), // the screen container element + var jqScreen = $('#screen-robot'), // the screen container element // quadrants jqCode = jqScreen.find('.block2'), jqConsole = jqScreen.find('.block3'), @@ -32,7 +32,7 @@ along with this program. If not, see . */ robotHandler; var enterFun = function(problemDef, commonDef, currentSolution) { - $('#navigation-problem_list').css('display', ''); + $('#navigation-problem-list').css('display', ''); var navigationRobot = $("#navigation-robot"); navigationRobot.addClass("active"); navigationRobot.css('display', ''); @@ -65,7 +65,7 @@ along with this program. If not, see . */ robotHandler.destroy(); robotHandler = null; - $('#navigation-problem_list').css('display', 'none'); + $('#navigation-problem-list').css('display', 'none'); var navigationRobot = $("#navigation-robot"); navigationRobot.removeClass("active"); navigationRobot.css('display', 'none'); @@ -223,7 +223,7 @@ along with this program. If not, see . */ reconnectTimer = null; } - $('#screen_robot .title').text('');//empty the title text + $('#screen-robot .title').text(''); //empty the title text jqAllButtons.off(); editor.off('change'); activityHandler.queueTrace({'typ': 'close'}); -- cgit v1.2.1