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, onfullscreenchange: null,
lastClickTime: null, lastClickTime: null,
draggingToZoom: false, draggingToZoom: false,
dblClickTimeThreshold: 1000
}; };
this._sequenceIndex = 0; this._sequenceIndex = 0;
@ -3201,7 +3200,6 @@ function onCanvasPress( event ) {
gestureSettings = this.gestureSettingsByDeviceType( event.pointerType ); gestureSettings = this.gestureSettingsByDeviceType( event.pointerType );
if ( gestureSettings.dblClickDragToZoom ){ if ( gestureSettings.dblClickDragToZoom ){
var dblClickTimeThreshold = THIS[ this.hash ].dblClickTimeThreshold;
var lastClickTime = THIS[ this.hash ].lastClickTime; var lastClickTime = THIS[ this.hash ].lastClickTime;
var currClickTime = $.now(); var currClickTime = $.now();
@ -3209,7 +3207,7 @@ function onCanvasPress( event ) {
return; return;
} }
if ((currClickTime - lastClickTime) < dblClickTimeThreshold) { if ((currClickTime - lastClickTime) < this.dblClickTimeThreshold) {
THIS[ this.hash ].draggingToZoom = true; THIS[ this.hash ].draggingToZoom = true;
} }