]> git.openstreetmap.org Git - rails.git/blobdiff - app/assets/javascripts/router.js
Log failures to match a route for the initial path
[rails.git] / app / assets / javascripts / router.js
index cadb6b628f1b672fa9dd46aaa6a2adf5279ddca1..0d57b80d488c3d56e291272b2ba9070ac0bd5508 100644 (file)
@@ -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 {
+      console.log("Unable to match route for: " + currentPath);
+    }
   };
 
   map.on('moveend baselayerchange overlaylayerchange', router.updateHash);