Skip to content

Commit

Permalink
Fixed issue with queue events and Angular 2+
Browse files Browse the repository at this point in the history
  • Loading branch information
Daniel Podsiadło committed Jan 2, 2018
1 parent 20af3f6 commit 998ecb7
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 998ecb7

Please sign in to comment.