Skip to content

Commit 19c1b1e

Browse files
committed
Missed a few deprecated property changes
1 parent eca6b61 commit 19c1b1e

File tree

4 files changed

+4
-4
lines changed

4 files changed

+4
-4
lines changed

src/preloadjs/utils/RequestUtils.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -88,7 +88,7 @@
8888
* if it is an unusual extension.
8989
* @method getTypeByExtension
9090
* @param {String} extension The file extension to use to determine the load type.
91-
* @return {String} The determined load type (for example, <code>AbstractLoader.IMAGE</code>). Will return `null` if
91+
* @return {String} The determined load type (for example, `createjs.Types.IMAGE`). Will return `null` if
9292
* the type can not be determined by the extension.
9393
* @static
9494
*/

src/soundjs/cordovaaudio/CordovaAudioLoader.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -49,7 +49,7 @@ this.createjs = this.createjs || {};
4949
* @protected
5050
*/
5151
function Loader(loadItem) {
52-
this.AbstractLoader_constructor(loadItem, true, createjs.AbstractLoader.SOUND);
52+
this.AbstractLoader_constructor(loadItem, true, createjs.Types.SOUND);
5353

5454
/**
5555
* A Media object used to determine if src exists and to get duration

src/soundjs/flashaudio/FlashAudioLoader.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -48,7 +48,7 @@ this.createjs = this.createjs || {};
4848
* @protected
4949
*/
5050
function Loader(loadItem) {
51-
this.AbstractLoader_constructor(loadItem, false, createjs.AbstractLoader.SOUND);
51+
this.AbstractLoader_constructor(loadItem, false, createjs.Types.SOUND);
5252

5353

5454
// Public properties

src/soundjs/webaudio/WebAudioLoader.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -47,7 +47,7 @@ this.createjs = this.createjs || {};
4747
* @protected
4848
*/
4949
function Loader(loadItem) {
50-
this.AbstractLoader_constructor(loadItem, true, createjs.AbstractLoader.SOUND);
50+
this.AbstractLoader_constructor(loadItem, true, createjs.Types.SOUND);
5151

5252
};
5353
var p = createjs.extend(Loader, createjs.AbstractLoader);

0 commit comments

Comments
 (0)