Merge pull request #3533 from Leaflet/doubletap-propagation
Synthetic doubletap events respect stopPropagation, fixes #3532
This commit is contained in:
commit
4457d1414a
@ -33,7 +33,7 @@ L.extend(L.DomEvent, {
|
||||
}
|
||||
|
||||
function onTouchEnd() {
|
||||
if (doubleTap) {
|
||||
if (doubleTap && !touch.cancelBubble) {
|
||||
if (L.Browser.pointer) {
|
||||
// work around .type being readonly with MSPointer* events
|
||||
var newTouch = {},
|
||||
|
Loading…
Reference in New Issue
Block a user