From f4f8a8f0166d617a289a77cc47fabf11d88069e9 Mon Sep 17 00:00:00 2001 From: Arun Persaud Date: Sun, 24 Jan 2016 10:31:17 -0800 Subject: [PATCH] clean up js a bit --- js/game.js | 7 +++---- 1 file 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(); }); -}); + + }); -- 2.25.1