mirror of
https://github.com/openseadragon/openseadragon.git
synced 2024-11-22 13:16:10 +03:00
Update viewer.js
This commit is contained in:
parent
6540a57aa9
commit
7c44dc64bc
@ -215,7 +215,6 @@ $.Viewer = function( options ) {
|
||||
onfullscreenchange: null,
|
||||
lastClickTime: null,
|
||||
draggingToZoom: false,
|
||||
dblClickTimeThreshold: 1000
|
||||
};
|
||||
|
||||
this._sequenceIndex = 0;
|
||||
@ -3201,7 +3200,6 @@ function onCanvasPress( event ) {
|
||||
|
||||
gestureSettings = this.gestureSettingsByDeviceType( event.pointerType );
|
||||
if ( gestureSettings.dblClickDragToZoom ){
|
||||
var dblClickTimeThreshold = THIS[ this.hash ].dblClickTimeThreshold;
|
||||
var lastClickTime = THIS[ this.hash ].lastClickTime;
|
||||
var currClickTime = $.now();
|
||||
|
||||
@ -3209,7 +3207,7 @@ function onCanvasPress( event ) {
|
||||
return;
|
||||
}
|
||||
|
||||
if ((currClickTime - lastClickTime) < dblClickTimeThreshold) {
|
||||
if ((currClickTime - lastClickTime) < this.dblClickTimeThreshold) {
|
||||
THIS[ this.hash ].draggingToZoom = true;
|
||||
}
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user