mirror of
https://github.com/openseadragon/openseadragon.git
synced 2025-04-03 22:03:31 +03:00
Ignoring touchMove if we didn't get the touchStart
This commit is contained in:
parent
26ad522f59
commit
96c14f7617
1 changed files with 4 additions and 0 deletions
|
@ -993,6 +993,10 @@
|
|||
touchB,
|
||||
pinchDelta;
|
||||
|
||||
if ( !THIS[ tracker.hash ].lastTouch ) {
|
||||
return;
|
||||
}
|
||||
|
||||
if( event.touches.length === 1 &&
|
||||
event.targetTouches.length === 1 &&
|
||||
event.changedTouches.length === 1 &&
|
||||
|
|
Loading…
Add table
Reference in a new issue