]> git.openstreetmap.org Git - rails.git/blobdiff - app/assets/javascripts/router.js
Throw an exception instead of logging to the console
[rails.git] / app / assets / javascripts / router.js
index 8661f95dccc918ee95d18fd54d0242281445f2e5..56616c2694d4cbe94ecd6dc2bb2dc8e590e73af5 100644 (file)
@@ -91,7 +91,7 @@ OSM.Router = function(map, rts) {
     }
   };
 
-  var currentPath = window.location.pathname + window.location.search,
+  var currentPath = window.location.pathname.replace(/(.)\/$/, '$1') + window.location.search,
     currentRoute = routes.recognize(currentPath),
     currentHash = location.hash || OSM.formatHash(map);
 
@@ -169,8 +169,12 @@ OSM.Router = function(map, rts) {
   };
 
   router.load = function() {
-    var loadState = currentRoute.run('load', currentPath);
-    router.stateChange(loadState || {});
+    if (currentRoute) {
+      var loadState = currentRoute.run('load', currentPath);
+      router.stateChange(loadState || {});
+    } else {
+      throw "Unable to match route for: " + currentPath;
+    }
   };
 
   map.on('moveend baselayerchange overlaylayerchange', router.updateHash);