From aa83e019fd6a73eaf78b348c49ce45ad4867a563 Mon Sep 17 00:00:00 2001 From: Ian Gilman Date: Tue, 15 Sep 2015 10:31:43 -0700 Subject: [PATCH] Changelog for #715 and #725 --- changelog.txt | 2 ++ src/tiledimage.js | 4 ++-- 2 files changed, 4 insertions(+), 2 deletions(-) diff --git a/changelog.txt b/changelog.txt index 99783a63..1d76c2e3 100644 --- a/changelog.txt +++ b/changelog.txt @@ -22,6 +22,8 @@ OPENSEADRAGON CHANGELOG * Added option in addTiledImage to replace tiledImage at index (#706) * Changed resize behaviour to prevent "snapping" to world bounds when constraints allow more space (#711) * Registers as an AMD module where possible (#719) +* Added autoRefigureSizes flag to World for optimizing mass rearrangements (#715) +* Added 'tile-load-failed' event (#725) 2.0.0: diff --git a/src/tiledimage.js b/src/tiledimage.js index a1832831..54f93241 100644 --- a/src/tiledimage.js +++ b/src/tiledimage.js @@ -1026,11 +1026,11 @@ function onTileLoad( tiledImage, tile, time, image, errorMsg ) { /** * Triggered when a tile fails to load. * - * @event tile-open-failed + * @event tile-load-failed * @memberof OpenSeadragon.Viewer * @type {object} - * @property {OpenSeadragon.TiledImage} tiledImage - The tiled image of the unloaded tile. * @property {OpenSeadragon.Tile} tile - The tile that failed to load. + * @property {OpenSeadragon.TiledImage} tiledImage - The tiled image the tile belongs to. * @property {number} time - The time in milliseconds when the tile load began. * @property {string} message - The error message. */