don't prevent all right clicking

This commit is contained in:
Connor Turland 2016-10-05 22:22:38 -04:00
parent c256d0891b
commit 0cfbe41d95

View file

@ -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()