From bb25d07c113ba90c830b3a005f0297599bfad2ed Mon Sep 17 00:00:00 2001 From: Arun Persaud Date: Sat, 19 Nov 2011 20:59:11 -0800 Subject: [PATCH] BUGFIX: typo in javascript --- include/game.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/include/game.js b/include/game.js index bf93272..3a1a080 100644 --- a/include/game.js +++ b/include/game.js @@ -45,13 +45,13 @@ $(document).ready( $("#ScoreTable").tablesorter({ widgets: ['zebra']}); $(".gameshidesession").click( function () { - $(this).parenthesis().children(".gamessession").hide(300); + $(this).parent().children(".gamessession").hide(300); $(this).parent().children(".gamesshowsession").show(); $(this).hide(); }); $(".gamesshowsession").click( function () { - $(this).parenthesis().children(".gamessession").show(300); + $(this).parent().children(".gamessession").show(300); $(this).parent().children(".gameshidesession").show(); $(this).hide(); }); -- 2.25.1