diff --git a/core/src/components/tap-click/tap-click.tsx b/core/src/components/tap-click/tap-click.tsx index 185e33d96c..a5567c9863 100644 --- a/core/src/components/tap-click/tap-click.tsx +++ b/core/src/components/tap-click/tap-click.tsx @@ -36,12 +36,7 @@ export class TapClick { this.pointerDown(ev); } - @Listen('document:touchcancel', { passive: true, capture: true }) - onTouchCancel(ev: TouchEvent) { - this.lastTouch = now(ev); - this.pointerUp(ev); - } - + @Listen('document:touchcancel', { passive: false, capture: true }) @Listen('document:touchend', { passive: false, capture: true }) onTouchEnd(ev: TouchEvent) { this.lastTouch = now(ev);