Merge pull request #740 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); _this._loadQueue.splice(0, 1);
if (queueItem.options.replace) { if (queueItem.options.replace) {
var newIndex = _this.world.getIndexOfItem(options.replaceItem); var newIndex = _this.world.getIndexOfItem(queueItem.options.replaceItem);
if (newIndex != -1) { if (newIndex != -1) {
options.index = newIndex; queueItem.options.index = newIndex;
} }
_this.world.removeItem(options.replaceItem); _this.world.removeItem(queueItem.options.replaceItem);
} }
tiledImage = new $.TiledImage({ tiledImage = new $.TiledImage({