]> git.openstreetmap.org Git - rails.git/commitdiff
Enable context menu on mouse down with no shift pressed
authorTom Hughes <tom@compton.nu>
Tue, 21 Feb 2017 09:16:38 +0000 (09:16 +0000)
committerTom Hughes <tom@compton.nu>
Tue, 21 Feb 2017 09:16:38 +0000 (09:16 +0000)
app/assets/javascripts/index/contextmenu.js

index b19c5d34f4f728a1b7b534c094cd577bf5221ece..148ccf908441b99cc23a62da95e81c21c55484df 100644 (file)
@@ -72,8 +72,7 @@ OSM.initializeContextMenu = function (map) {
 
   map.on("mousedown", function (e) {
     if (e.originalEvent.shiftKey) map.contextmenu.disable();
-  }).on("mouseup", function () {
-    map.contextmenu.enable();
+    else map.contextmenu.enable();
   });
 
   var updateMenu = function updateMenu () {