Fix other image loading problem.

This commit is contained in:
Brendan Dahl 2014-12-09 13:36:50 -08:00
Родитель b4271a9c26
Коммит 36161c6045
1 изменённых файлов: 3 добавлений и 1 удалений

Просмотреть файл

@ -361,8 +361,10 @@ ImagePlayer.prototype.realize = function() {
this.image.src = URL.createObjectURL(new Blob([ imgData ]));
}).bind(this));
} else {
this.image.onload = function() {
resolve(true);
};
this.image.src = this.url;
resolve(true);
}
}).bind(this));
}