1
0
Fork 0
mirror of https://github.com/openseadragon/openseadragon.git synced 2025-03-29 03:39:50 +03:00

Merge pull request from LarissaSmith/master

Use the right queue item's options when replacing an item.
This commit is contained in:
Ian Gilman 2015-10-09 09:14:10 -07:00
commit eba50af8fd

View file

@ -1312,11 +1312,11 @@ $.extend( $.Viewer.prototype, $.EventSource.prototype, $.ControlDock.prototype,
_this._loadQueue.splice(0, 1);
if (queueItem.options.replace) {
var newIndex = _this.world.getIndexOfItem(options.replaceItem);
var newIndex = _this.world.getIndexOfItem(queueItem.options.replaceItem);
if (newIndex != -1) {
options.index = newIndex;
queueItem.options.index = newIndex;
}
_this.world.removeItem(options.replaceItem);
_this.world.removeItem(queueItem.options.replaceItem);
}
tiledImage = new $.TiledImage({