From 310de40f76fd57654314b7624b8c42bbac2a1b66 Mon Sep 17 00:00:00 2001 From: Sven Slootweg Date: Mon, 6 Aug 2012 21:08:52 +0200 Subject: [PATCH] Get rid of some debugging stuff --- map_isometric.js | 4 ---- 1 file changed, 4 deletions(-) diff --git a/map_isometric.js b/map_isometric.js index 34d1c3c..b37041a 100644 --- a/map_isometric.js +++ b/map_isometric.js @@ -36,16 +36,12 @@ if(RadiumEngine !== undefined) if(coords.x >= 0 && coords.x < self.width && coords.y >= 0 && coords.y < self.height) { self.mouse_in = true; - $('#status').html("in"); } else { self.mouse_in = false; - $('#status').html("out"); } - /*$('#status').html(coords.x + " , " + coords.y);*/ - self.Redraw(); });