Update viewer.js

This commit is contained in:
Hamza Tatheer 2022-11-16 15:48:45 +05:00
parent 6540a57aa9
commit 7c44dc64bc

View File

@ -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;
}