diff --git a/src/core/instance.core.ts b/src/core/instance.core.ts index 022cd2c..087f4e0 100644 --- a/src/core/instance.core.ts +++ b/src/core/instance.core.ts @@ -376,9 +376,7 @@ export class ZoomPanPinch { const isDoubleTap = this.lastTouch && +new Date() - this.lastTouch < 200; - if (isDoubleTap && event.touches.length === 1) { - this.onDoubleClick(event); - } else { + if (!isDoubleTap) { this.lastTouch = +new Date(); handleCancelAnimation(this);