mirror of
https://github.com/openseadragon/openseadragon.git
synced 2025-04-03 13:53:31 +03:00
fix build error
This commit is contained in:
parent
77bc130636
commit
5d70a807da
1 changed files with 1 additions and 1 deletions
|
@ -234,7 +234,7 @@ $.ImageLoader.prototype = {
|
|||
* @param callback - Called once cleanup is finished.
|
||||
*/
|
||||
function completeJob(loader, job, callback) {
|
||||
if (job.errorMsg != '' && job.image === null && job.tries < 1 + loader.tileRetryMax) {
|
||||
if (job.errorMsg !== '' && job.image === null && job.tries < 1 + loader.tileRetryMax) {
|
||||
loader.failedTiles.push(job);
|
||||
}
|
||||
var nextJob;
|
||||
|
|
Loading…
Add table
Reference in a new issue