@@ -40,7 +40,7 @@ var ValueToColor = require('../display/color/ValueToColor');
4040 * @property {string } [baseURL] - [description]
4141 * @property {string } [path] - [description]
4242 * @property {boolean } [enableParallel=true] - [description]
43- * @property {integer } [maxParallelDownloads=4 ] - [description]
43+ * @property {integer } [maxParallelDownloads=32 ] - [description]
4444 * @property {(string|undefined) } [crossOrigin=undefined] - [description]
4545 * @property {string } [responseType] - [description]
4646 * @property {boolean } [async=true] - [description]
@@ -237,7 +237,7 @@ var Config = new Class({
237237 this . loaderBaseURL = GetValue ( config , 'loader.baseURL' , '' ) ;
238238 this . loaderPath = GetValue ( config , 'loader.path' , '' ) ;
239239 this . loaderEnableParallel = GetValue ( config , 'loader.enableParallel' , true ) ;
240- this . loaderMaxParallelDownloads = GetValue ( config , 'loader.maxParallelDownloads' , 4 ) ;
240+ this . loaderMaxParallelDownloads = GetValue ( config , 'loader.maxParallelDownloads' , 32 ) ;
241241 this . loaderCrossOrigin = GetValue ( config , 'loader.crossOrigin' , undefined ) ;
242242 this . loaderResponseType = GetValue ( config , 'loader.responseType' , '' ) ;
243243 this . loaderAsync = GetValue ( config , 'loader.async' , true ) ;
0 commit comments