don't block all right clicks

This commit is contained in:
Connor Turland 2016-10-23 11:12:43 -04:00
parent a63cd02bc6
commit 4f9b9460ad

View file

@ -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;