mirror of
https://github.com/openseadragon/openseadragon.git
synced 2025-04-02 21:36:11 +03:00
prevent multi-points errors on ipad
This commit is contained in:
parent
e79e132cd9
commit
4a3f79e305
1 changed files with 1 additions and 1 deletions
|
@ -2959,7 +2959,7 @@
|
|||
}
|
||||
|
||||
// OS-specific gestures (e.g. swipe up with four fingers in iPadOS 13)
|
||||
if (gPoints[ 0 ].type === "touch" && typeof gPoints[ 0 ].currentPos === "undefined") {
|
||||
if (typeof gPoints[ 0 ].currentPos === "undefined") {
|
||||
abortContacts(tracker, event, pointsList);
|
||||
|
||||
return false;
|
||||
|
|
Loading…
Add table
Reference in a new issue