X-Git-Url: https://git.openstreetmap.org./rails.git/blobdiff_plain/fbd5a88b24f54002c68f9989b68c9603d3bda0ee..a47d6c212da842a552876737c6fb2373555f3feb:/app/assets/javascripts/index/note.js.erb?ds=sidebyside diff --git a/app/assets/javascripts/index/note.js.erb b/app/assets/javascripts/index/note.js.erb index 1f9dbe375..2a2599a3c 100644 --- a/app/assets/javascripts/index/note.js.erb +++ b/app/assets/javascripts/index/note.js.erb @@ -64,9 +64,9 @@ OSM.Note = function (map) { var data = $('.details').data(), latLng = data.coordinates.split(','); - if (!window.location.hash) { - OSM.route.moveListenerOff(); - map.once('moveend', OSM.route.moveListenerOn); + if (!window.location.hash || window.location.hash.match(/^#?c[0-9]+$/)) { + OSM.router.moveListenerOff(); + map.once('moveend', OSM.router.moveListenerOn); map.getZoom() > 15 ? map.panTo(latLng) : map.setView(latLng, 16); }