diff options
author | Arun Persaud <arun@nubati.net> | 2011-11-19 20:59:11 -0800 |
---|---|---|
committer | Arun Persaud <apersaud@lbl.gov> | 2011-11-19 21:03:03 -0800 |
commit | bb25d07c113ba90c830b3a005f0297599bfad2ed (patch) | |
tree | 0052ed3368762dcede314c1524ce414388918105 | |
parent | f55dbd7a08908c0443b5ed9d20c2dc74bb8b1026 (diff) | |
download | e-DoKo-bb25d07c113ba90c830b3a005f0297599bfad2ed.tar.gz e-DoKo-bb25d07c113ba90c830b3a005f0297599bfad2ed.tar.bz2 e-DoKo-bb25d07c113ba90c830b3a005f0297599bfad2ed.zip |
BUGFIX: typo in javascript
-rw-r--r-- | include/game.js | 4 |
1 files 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(); }); |