From 3cb5152905317a63cb4b6fb19143eb22743f7155 Mon Sep 17 00:00:00 2001 From: Michael Gibson Date: Fri, 7 Mar 2025 21:18:42 -0700 Subject: [PATCH] Change flag name --- src/openseadragon.js | 4 ++-- src/tiledimage.js | 4 ++-- src/viewer.js | 2 +- 3 files changed, 5 insertions(+), 5 deletions(-) diff --git a/src/openseadragon.js b/src/openseadragon.js index 0f2789d9..f39d6ffc 100644 --- a/src/openseadragon.js +++ b/src/openseadragon.js @@ -355,7 +355,7 @@ * Specifies the animation duration per each {@link OpenSeadragon.Spring} * which occur when the image is dragged, zoomed or rotated. * - * @property {Boolean} [loadTilesOnAnimationPathTiles=true] + * @property {Boolean} [loadDestinationTilesOnAnimation=true] * If true, tiles are loaded when they are on the path of the animation. * If false, tiles at the animation destination are optimistically loaded * @property {OpenSeadragon.GestureSettings} [gestureSettingsMouse] @@ -1278,7 +1278,7 @@ function OpenSeadragon( options ){ dblClickDistThreshold: 20, springStiffness: 6.5, animationTime: 1.2, - loadTilesOnAnimationPath: true, + loadDestinationTilesOnAnimation: true, gestureSettingsMouse: { dragToPan: true, scrollToZoom: true, diff --git a/src/tiledimage.js b/src/tiledimage.js index 3d670062..fb6a12ac 100644 --- a/src/tiledimage.js +++ b/src/tiledimage.js @@ -176,7 +176,7 @@ $.TiledImage = function( options ) { wrapHorizontal: $.DEFAULT_SETTINGS.wrapHorizontal, wrapVertical: $.DEFAULT_SETTINGS.wrapVertical, immediateRender: $.DEFAULT_SETTINGS.immediateRender, - loadTilesOnAnimationPath: $.DEFAULT_SETTINGS.loadTilesOnAnimationPath, + loadDestinationTilesOnAnimation: $.DEFAULT_SETTINGS.loadDestinationTilesOnAnimation, blendTime: $.DEFAULT_SETTINGS.blendTime, alwaysBlend: $.DEFAULT_SETTINGS.alwaysBlend, minPixelRatio: $.DEFAULT_SETTINGS.minPixelRatio, @@ -1357,7 +1357,7 @@ $.extend($.TiledImage.prototype, $.EventSource.prototype, /** @lends OpenSeadrag var drawArea = this.getDrawArea(); var loadArea = drawArea; - if (!this.loadTilesOnAnimationPath) { + if (this.loadDestinationTilesOnAnimation) { loadArea = this.getLoadArea(); } var currentTime = $.now(); diff --git a/src/viewer.js b/src/viewer.js index 023da35b..17c8184c 100644 --- a/src/viewer.js +++ b/src/viewer.js @@ -1748,7 +1748,7 @@ $.extend( $.Viewer.prototype, $.EventSource.prototype, $.ControlDock.prototype, wrapHorizontal: _this.wrapHorizontal, wrapVertical: _this.wrapVertical, maxTilesPerFrame: _this.maxTilesPerFrame, - loadTilesOnAnimationPath: _this.loadTilesOnAnimationPath, + loadDestinationTilesOnAnimation: _this.loadDestinationTilesOnAnimation, immediateRender: _this.immediateRender, blendTime: _this.blendTime, alwaysBlend: _this.alwaysBlend,