Thanks to visit codestin.com Credit goes to github.com
We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 08f621b commit ddf1a4fCopy full SHA for ddf1a4f
src/plots/mapbox/mapbox.js
@@ -600,7 +600,8 @@ proto.updateFx = function(fullLayout) {
600
map.dragPan.enable();
601
map.off('zoomstart', self.clearSelect);
602
self.div.onmousedown = null;
603
-
+ self.div.ontouchstart = null;
604
+ self.div.removeEventListener('touchstart', self.div._ontouchstart);
605
// TODO: this does not support right-click. If we want to support it, we
606
// would likely need to change mapbox to use dragElement instead of straight
607
// mapbox event binding. Or perhaps better, make a simple wrapper with the
0 commit comments