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 ea15dfe commit 9525dbbCopy full SHA for 9525dbb
1 file changed
src/core/instance.core.ts
@@ -376,9 +376,7 @@ export class ZoomPanPinch {
376
377
const isDoubleTap = this.lastTouch && +new Date() - this.lastTouch < 200;
378
379
- if (isDoubleTap && event.touches.length === 1) {
380
- this.onDoubleClick(event);
381
- } else {
+ if (!isDoubleTap) {
382
this.lastTouch = +new Date();
383
384
handleCancelAnimation(this);
0 commit comments