Skip to content

Commit

Permalink
Merge pull request #250 from dpodsiadlo/master
Browse files Browse the repository at this point in the history
Fixed issue with queue events on Angular 2+
  • Loading branch information
lannymcnie authored Jan 5, 2018
2 parents 20af3f6 + 998ecb7 commit 08d08ec
Showing 1 changed file with 1 addition and 4 deletions.
5 changes: 1 addition & 4 deletions src/preloadjs/loaders/AbstractLoader.js
Original file line number Diff line number Diff line change
Expand Up @@ -508,10 +508,7 @@ this.createjs = this.createjs || {};
* @protected
*/
p._isCanceled = function () {
if (window.createjs == null || this.canceled) {
return true;
}
return false;
return this.canceled;
};

/**
Expand Down

0 comments on commit 08d08ec

Please sign in to comment.