aboutsummaryrefslogtreecommitdiffstats
path: root/www/js
diff options
context:
space:
mode:
authorStruan Donald <struan@exo.org.uk>2012-11-05 16:42:33 +0000
committerStruan Donald <struan@exo.org.uk>2012-11-05 16:42:33 +0000
commit82df7435baae2a3617a98c616ee019a1c668376d (patch)
tree07c565cf6671570faad9385dec01de73defb7298 /www/js
parentbb077f0c10ac2f5635faa7a8772b1ffa73581b3c (diff)
remove debug code
Diffstat (limited to 'www/js')
-rw-r--r--www/js/fixmystreet.js2
1 files changed, 0 insertions, 2 deletions
diff --git a/www/js/fixmystreet.js b/www/js/fixmystreet.js
index 71a4f96..c7cf324 100644
--- a/www/js/fixmystreet.js
+++ b/www/js/fixmystreet.js
@@ -135,7 +135,6 @@ $(document).bind('pageshow', function(){
crosshairsControls[i].reposition();
}
// Also reposition the "Tap here to mark this point" button:
- console.log('reposition mark-here');
markHere = $('#mark-here');
newX = $(window).width() / 2 - markHere.width() / 2;
newY = $(window).height() * 4 / 5 - markHere.height() / 2;
@@ -143,7 +142,6 @@ $(document).bind('pageshow', function(){
left: newX + "px",
top: newY + "px"
});
- console.log( newX + ', ' + newY );
}
});