diff options
author | Struan Donald <struan@exo.org.uk> | 2012-06-15 15:01:05 +0100 |
---|---|---|
committer | Struan Donald <struan@exo.org.uk> | 2012-06-15 15:01:05 +0100 |
commit | ae327302c1dddd1a08d80aa715dbd4fc2bb3c7c2 (patch) | |
tree | 962e127e18dbc9caedd1d0e49a9ec86aea6266cf /www/js/map-bing.js | |
parent | 3ee077362751d794cc887b952d02e0c10d20f4d5 (diff) |
fix jslint issues and remove unused js files
Diffstat (limited to 'www/js/map-bing.js')
-rw-r--r-- | www/js/map-bing.js | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/www/js/map-bing.js b/www/js/map-bing.js index 856e4f1..715a8ef 100644 --- a/www/js/map-bing.js +++ b/www/js/map-bing.js @@ -17,6 +17,6 @@ $(function(){ Microsoft.Maps.Events.addHandler(map, "viewchangestart", function(e) { /* Doesn't work */ - if (map.getTargetZoom() < 12) return false; + if (map.getTargetZoom() < 12) { return false; } }); }); |