Skip to content

Commit d56c69c

Browse files
committed
It's only ready if not complete!
1 parent 2859e05 commit d56c69c

1 file changed

Lines changed: 1 addition & 3 deletions

File tree

src/loader/LinkFile.js

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -102,13 +102,11 @@ var LinkFile = new Class({
102102

103103
isReadyToProcess: function ()
104104
{
105-
return (this.pending === 0 && this.failed === 0);
105+
return (this.pending === 0 && this.failed === 0 && !this.complete);
106106
},
107107

108108
addToLinkFile: function (file)
109109
{
110-
console.log('LinkFile - new file added: ', file.key);
111-
112110
this.files.push(file);
113111

114112
file.linkFile = this;

0 commit comments

Comments
 (0)