diff options
-rw-r--r-- | src/js/views/around.js | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/src/js/views/around.js b/src/js/views/around.js index a3c2d53..0ac3b8b 100644 --- a/src/js/views/around.js +++ b/src/js/views/around.js @@ -119,7 +119,9 @@ }, positionUpdate: function( info ) { - $('#relocate').show(); + if ( $('#front-howto').is(':hidden') ) { + $('#relocate').show(); + } FMS.currentPosition = info.coordinates; var centre = this.projectCoords( info.coordinates ); |