Changelog for #715 and #725

This commit is contained in:
Ian Gilman 2015-09-15 10:31:43 -07:00
parent e4b33623fa
commit aa83e019fd
2 changed files with 4 additions and 2 deletions

View File

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

View File

@ -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.
*/