]> git.openstreetmap.org Git - rails.git/blobdiff - app/assets/javascripts/router.js
From->To->Go order as per @samanpwbb's comment
[rails.git] / app / assets / javascripts / router.js
index 2f76f2f184983a01efbbaa651dcbb9f9d5b256c5..05e47c3560955e4f8fb3fec90eb32d5cfc5f918e 100644 (file)
@@ -113,8 +113,8 @@ OSM.Router = function(map, rts) {
       var path = url.replace(/#.*/, ''),
         route = routes.recognize(path);
       if (!route) return false;
-      window.history.pushState(OSM.parseHash(url), document.title, url);
       currentRoute.run('unload');
+      window.history.pushState(OSM.parseHash(url), document.title, url);
       currentPath = path;
       currentRoute = route;
       currentRoute.run('pushstate', currentPath);
@@ -174,6 +174,9 @@ OSM.Router = function(map, rts) {
 
   map.on('moveend baselayerchange overlaylayerchange', router.updateHash);
   $(window).on('hashchange', router.hashUpdated);
+  $(window).on('unload', function(e) {
+      $(".query_wrapper.routing input").val("");
+  });
 
   return router;
 };