]> git.openstreetmap.org Git - rails.git/blobdiff - app/assets/javascripts/index.js
Rejig changeset details in the style of danstowell
[rails.git] / app / assets / javascripts / index.js
index ef23e340d36a6015896e7dd2d82c967ea8b3a9a5..e9e95abfef40e81eb7f3ae0be17fdc97a2735aeb 100644 (file)
@@ -292,8 +292,8 @@ $(document).ready(function () {
   });
 
   $(document).on("click", "a", function(e) {
-    if (e.isPropagationStopped()) return;
-    if (OSM.route(this.pathname + this.search + this.hash)) e.preventDefault();
+    if (e.isDefaultPrevented() || e.isPropagationStopped()) return;
+    if (this.host === window.location.host && OSM.route(this.pathname + this.search + this.hash)) e.preventDefault();
   });
 
   $("#search_form").on("submit", function(e) {