From 4f9b9460ad794261aa72fa950ce4a8080677f572 Mon Sep 17 00:00:00 2001 From: Connor Turland Date: Sun, 23 Oct 2016 11:12:43 -0400 Subject: [PATCH] don't block all right clicks --- frontend/src/Metamaps/Map/index.js | 5 ----- 1 file changed, 5 deletions(-) diff --git a/frontend/src/Metamaps/Map/index.js b/frontend/src/Metamaps/Map/index.js index 7aa98cc3..09790b89 100644 --- a/frontend/src/Metamaps/Map/index.js +++ b/frontend/src/Metamaps/Map/index.js @@ -39,11 +39,6 @@ const Map = { }, init: function () { var self = Map - - // prevent right clicks on the main canvas, so as to not get in the way of our right clicks - $('#wrapper').on('contextmenu', function (e) { - return false - }) $('#wrapper').mousedown(function (e){ if(e.button === 1)return false;