We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent c3d6b5e commit 6ecb7e1Copy full SHA for 6ecb7e1
src/preloadjs/XHRLoader.js
@@ -592,11 +592,9 @@ this.createjs = this.createjs || {};
592
case createjs.LoadQueue.MANIFEST:
593
var json;
594
try {
595
- /*if(JSON.minify && (this._item.data && this._item.data.minify))
596
- {
597
- this._response = JSON.minify(this._response);
598
- }
599
- json = JSON.parse(this._response);*/
+ /*
+ json = JSON.parse(this._response);
+ */
600
//use eval to allow javascript comments in the JSON
601
eval("json = " + this._response + ";");//thankfully, uglify won't mangle 'var json' because we use it in eval()
602
} catch (error) {
src/preloadjs/minify.json.js
0 commit comments