@@ -56,7 +56,7 @@ this.createjs = this.createjs || {};
5656 * @type {String }
5757 * @static
5858 **/
59- s . buildDate = /*=date*/ "Thu, 08 Jun 2017 16:29:17 GMT" ; // injected by build process
59+ s . buildDate = /*=date*/ "Wed, 21 Jun 2017 16:42:40 GMT" ; // injected by build process
6060
6161} ) ( ) ;
6262
@@ -4417,7 +4417,7 @@ this.createjs = this.createjs || {};
44174417 * var type = item.type;
44184418 *
44194419 * // Add any images to the page body.
4420- * if (type == createjs.LoadQueue .IMAGE) {
4420+ * if (type == createjs.Types .IMAGE) {
44214421 * document.body.appendChild(event.result);
44224422 * }
44234423 * }
@@ -5364,7 +5364,7 @@ this.createjs = this.createjs || {};
53645364
53655365 // Only worry about script order when using XHR to load scripts. Tags are only loading one at a time.
53665366 if ( ( this . maintainScriptOrder
5367- && item . type == createjs . LoadQueue . JAVASCRIPT
5367+ && item . type == createjs . Types . JAVASCRIPT
53685368 //&& loader instanceof createjs.XHRLoader //NOTE: Have to track all JS files this way
53695369 )
53705370 || item . maintainOrder === true ) {
@@ -5707,7 +5707,7 @@ this.createjs = this.createjs || {};
57075707 p . _finishOrderedItem = function ( loader , loadFailed ) {
57085708 var item = loader . getItem ( ) ;
57095709
5710- if ( ( this . maintainScriptOrder && item . type == createjs . LoadQueue . JAVASCRIPT )
5710+ if ( ( this . maintainScriptOrder && item . type == createjs . Types . JAVASCRIPT )
57115711 || item . maintainOrder ) {
57125712
57135713 //TODO: Evaluate removal of the _currentlyLoadingScript
@@ -5750,7 +5750,7 @@ this.createjs = this.createjs || {};
57505750 } // This has completed, and been processed. Move on.
57515751
57525752 var loadItem = this . _loadedResults [ item . id ] ;
5753- if ( item . type == createjs . LoadQueue . JAVASCRIPT ) {
5753+ if ( item . type == createjs . Types . JAVASCRIPT ) {
57545754 // Append script tags to the head automatically.
57555755 createjs . DomUtils . appendToHead ( loadItem ) ;
57565756 }
@@ -5774,7 +5774,7 @@ this.createjs = this.createjs || {};
57745774
57755775 // Since LoadQueue needs maintain order, we can't append scripts in the loader.
57765776 // So we do it here instead. Or in _checkScriptLoadOrder();
5777- if ( ! this . maintainScriptOrder && item . type == createjs . LoadQueue . JAVASCRIPT ) {
5777+ if ( ! this . maintainScriptOrder && item . type == createjs . Types . JAVASCRIPT ) {
57785778 var tag = loader . getTag ( ) ;
57795779 createjs . DomUtils . appendToHead ( tag ) ;
57805780 }
@@ -5798,7 +5798,7 @@ this.createjs = this.createjs || {};
57985798 return true ;
57995799 }
58005800 var item = loader . getItem ( ) ;
5801- if ( item . type != createjs . LoadQueue . JAVASCRIPT ) {
5801+ if ( item . type != createjs . Types . JAVASCRIPT ) {
58025802 return true ;
58035803 }
58045804 if ( this . _currentlyLoadingScript ) {
0 commit comments