Max Parallel Files limit raised from 4 to 32

This commit is contained in:
Richard Davey 2018-05-02 17:23:51 +01:00
parent e6a3747291
commit 8c51107718

View file

@ -40,7 +40,7 @@ var ValueToColor = require('../display/color/ValueToColor');
* @property {string} [baseURL] - [description]
* @property {string} [path] - [description]
* @property {boolean} [enableParallel=true] - [description]
* @property {integer} [maxParallelDownloads=4] - [description]
* @property {integer} [maxParallelDownloads=32] - [description]
* @property {(string|undefined)} [crossOrigin=undefined] - [description]
* @property {string} [responseType] - [description]
* @property {boolean} [async=true] - [description]
@ -237,7 +237,7 @@ var Config = new Class({
this.loaderBaseURL = GetValue(config, 'loader.baseURL', '');
this.loaderPath = GetValue(config, 'loader.path', '');
this.loaderEnableParallel = GetValue(config, 'loader.enableParallel', true);
this.loaderMaxParallelDownloads = GetValue(config, 'loader.maxParallelDownloads', 4);
this.loaderMaxParallelDownloads = GetValue(config, 'loader.maxParallelDownloads', 32);
this.loaderCrossOrigin = GetValue(config, 'loader.crossOrigin', undefined);
this.loaderResponseType = GetValue(config, 'loader.responseType', '');
this.loaderAsync = GetValue(config, 'loader.async', true);