Skip to content

Commit

Permalink
Updated NEXT libs
Browse files Browse the repository at this point in the history
  • Loading branch information
Lanny McNie committed Dec 4, 2015
1 parent 60cc8da commit f01632d
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 5 deletions.
8 changes: 4 additions & 4 deletions lib/soundjs-NEXT.combined.js
Original file line number Diff line number Diff line change
Expand Up @@ -57,7 +57,7 @@ this.createjs = this.createjs || {};
* @type String
* @static
**/
s.buildDate = /*=date*/"Wed, 25 Nov 2015 19:26:51 GMT"; // injected by build process
s.buildDate = /*=date*/"Fri, 04 Dec 2015 17:24:04 GMT"; // injected by build process

})();

Expand Down Expand Up @@ -1350,9 +1350,9 @@ this.createjs = this.createjs || {};
}

if (idx != -1) {
return src.slice(0, idx) + '?' + this._formatQueryString(data, query);
return src.slice(0, idx) + '?' + this.formatQueryString(data, query);
} else {
return src + '?' + this._formatQueryString(data, query);
return src + '?' + this.formatQueryString(data, query);
}
};

Expand Down Expand Up @@ -4437,7 +4437,7 @@ this.createjs = this.createjs || {};
* {src:"asset0.ogg", id:"example"},
* {src:"asset1.ogg", id:"1", data:6},
* {src:"asset2.mp3", id:"works"}
* {src:{mp3:"path1/asset3.mp3", ogg:"path2/asset3NoExtension}, id:"better"}
* {src:{mp3:"path1/asset3.mp3", ogg:"path2/asset3NoExtension"}, id:"better"}
* ];
* createjs.Sound.alternateExtensions = ["mp3"]; // if the passed extension is not supported, try this extension
* createjs.Sound.on("fileload", handleLoad); // call handleLoad when each sound loads
Expand Down

0 comments on commit f01632d

Please sign in to comment.