]> git.openstreetmap.org Git - rails.git/commitdiff
Restore correct link behavior with modifier keys
authorJohn Firebaugh <john.firebaugh@gmail.com>
Mon, 2 Dec 2013 22:25:45 +0000 (14:25 -0800)
committerJohn Firebaugh <john.firebaugh@gmail.com>
Mon, 2 Dec 2013 22:25:45 +0000 (14:25 -0800)
Fixes #562

app/assets/javascripts/index.js

index 273ce581a252fd1b02dc0b5d0cca1a1e35b7fe4b..c5532cfc4ca0791858597f61cf51e9dc30032618 100644 (file)
@@ -287,8 +287,19 @@ $(document).ready(function () {
   OSM.router.load();
 
   $(document).on("click", "a", function(e) {
   OSM.router.load();
 
   $(document).on("click", "a", function(e) {
-    if (e.isDefaultPrevented() || e.isPropagationStopped()) return;
-    if (this.host === window.location.host && OSM.router.route(this.pathname + this.search + this.hash)) e.preventDefault();
+    if (e.isDefaultPrevented() || e.isPropagationStopped())
+      return;
+
+    // Open links in a new tab as normal.
+    if (e.which > 1 || e.metaKey || e.ctrlKey || e.shiftKey || e.altKey)
+      return;
+
+    // Ignore cross-protocol and cross-origin links.
+    if (location.protocol !== this.protocol || location.host !== this.host)
+      return;
+
+    if (OSM.router.route(this.pathname + this.search + this.hash))
+      e.preventDefault();
   });
 
   $(".search_form").on("submit", function(e) {
   });
 
   $(".search_form").on("submit", function(e) {