mirror of
https://github.com/openseadragon/openseadragon.git
synced 2025-04-04 06:13:31 +03:00
Fix for touch event issue #240
This commit is contained in:
parent
5ce3da2548
commit
9928a6d925
1 changed files with 1 additions and 1 deletions
|
@ -1020,7 +1020,7 @@
|
|||
function onMouseUpCaptured( tracker, event, noRelease, isTouch ) {
|
||||
isTouch = isTouch || false;
|
||||
|
||||
if ( !THIS[ tracker.hash ].insideElement ) {
|
||||
if ( !THIS[ tracker.hash ].insideElement || isTouch ) {
|
||||
onMouseUp( tracker, event, isTouch );
|
||||
}
|
||||
|
||||
|
|
Loading…
Add table
Reference in a new issue