From: Arun Persaud Date: Sun, 20 Nov 2011 04:59:11 +0000 (-0800) Subject: BUGFIX: typo in javascript X-Git-Url: https://git.nubati.net/cgi-bin/gitweb.cgi?p=e-DoKo.git;a=commitdiff_plain;h=bb25d07c113ba90c830b3a005f0297599bfad2ed;ds=inline BUGFIX: typo in javascript --- 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(); });