summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorArun Persaud <arun@nubati.net>2016-01-24 10:31:17 -0800
committerArun Persaud <arun@nubati.net>2016-01-24 10:31:25 -0800
commitf4f8a8f0166d617a289a77cc47fabf11d88069e9 (patch)
tree94e5afc972c3c34229bb031a646584240810c7fe
parent4afb2915193523f99f360e27477afefcb19ed079 (diff)
downloade-DoKo-f4f8a8f0166d617a289a77cc47fabf11d88069e9.tar.gz
e-DoKo-f4f8a8f0166d617a289a77cc47fabf11d88069e9.tar.bz2
e-DoKo-f4f8a8f0166d617a289a77cc47fabf11d88069e9.zip
clean up js a bit
-rw-r--r--js/game.js7
1 files changed, 3 insertions, 4 deletions
diff --git a/js/game.js b/js/game.js
index 06457be..dd196a3 100644
--- a/js/game.js
+++ b/js/game.js
@@ -101,10 +101,8 @@ $(document).ready(
});
$(".message div div").parent().click ( function() { $(this).hide(); });
- });
-/* look for swipes left/right */
-$().ready(function(){
+ /* look for swipes left/right */
$("div.table").mousedown(function(e){
down_x = e.pageX;
});
@@ -121,4 +119,5 @@ $().ready(function(){
$("div.table").bind('touchend', function(e){
do_swipe();
});
-});
+
+ });