This commit is contained in:
Antoine Vandecreme 2016-08-28 12:14:49 +02:00
commit eaddc1c33b
2 changed files with 2 additions and 0 deletions

View File

@ -10,6 +10,7 @@ OPENSEADRAGON CHANGELOG
* The Viewer's tileSources option is now smarter about detecting JSON vs XML vs URL (#999)
* The navigationControlAnchor option now works for custom toolbar as well (#1004)
* Added getFullyLoaded method and "fully-loaded-change" event to TiledImage to know when tiles are fully loaded (#837)
* Fixed: Initial tile load wasn't happening in parallel (#1014)
2.2.1:

View File

@ -992,6 +992,7 @@ $.extend($.TiledImage.prototype, $.EventSource.prototype, /** @lends OpenSeadrag
// Load the new 'best' tile
if (bestTile && !bestTile.context2D) {
loadTile(this, bestTile, currentTime);
this._needsDraw = true;
this._setFullyLoaded(false);
} else {
this._setFullyLoaded(true);