mirror of
https://github.com/openseadragon/openseadragon.git
synced 2024-11-25 14:46:10 +03:00
Ignoring touchMove if we didn't get the touchStart
This commit is contained in:
parent
26ad522f59
commit
96c14f7617
@ -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…
Reference in New Issue
Block a user