diff options
Diffstat (limited to 'www/js')
-rw-r--r-- | www/js/views/around.js | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/www/js/views/around.js b/www/js/views/around.js index 868a798..983a2ad 100644 --- a/www/js/views/around.js +++ b/www/js/views/around.js @@ -72,11 +72,13 @@ this.stopListening(FMS.locator, 'gps_located'); this.stopListening(FMS.locator, 'gps_failed'); this.locateCount = 21; - $('#progress-bar').css( 'background-color', 'green' ); + $('#ajaxOverlay').hide(); $('#locating').hide(); + var coords = info.coordinates; fixmystreet.latitude = coords.latitude; fixmystreet.longitude = coords.longitude; + if ( !fixmystreet.map ) { show_map(); } else { |