]> git.openstreetmap.org Git - rails.git/blobdiff - app/assets/javascripts/router.js
Make remote edit work when /edit is loaded
[rails.git] / app / assets / javascripts / router.js
index 200edd2664fa94e4b9aeaf78bceff3bcab3e64ac..2f76f2f184983a01efbbaa651dcbb9f9d5b256c5 100644 (file)
@@ -167,6 +167,11 @@ OSM.Router = function(map, rts) {
     router.stateChange(loadState || {});
   };
 
+  router.setCurrentPath = function (path) {
+    currentPath = path;
+    currentRoute = routes.recognize(currentPath);
+  };
+
   map.on('moveend baselayerchange overlaylayerchange', router.updateHash);
   $(window).on('hashchange', router.hashUpdated);