From 0cfbe41d95acc52b7ec8604166d5712004fedd91 Mon Sep 17 00:00:00 2001 From: Connor Turland Date: Wed, 5 Oct 2016 22:22:38 -0400 Subject: [PATCH] don't prevent all right clicking --- 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 dc9b4eb8..4c2f78bb 100644 --- a/frontend/src/Metamaps/Map/index.js +++ b/frontend/src/Metamaps/Map/index.js @@ -40,11 +40,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 - }) - $('.starMap').click(function () { if ($(this).is('.starred')) self.unstar() else self.star()