Change flag name

This commit is contained in:
Michael Gibson 2025-03-07 21:18:42 -07:00
parent 5cc76737b4
commit 3cb5152905
3 changed files with 5 additions and 5 deletions

View file

@ -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,

View file

@ -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();

View file

@ -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,