From 8c51107718a90987a6214cf0956ba9386413b45a Mon Sep 17 00:00:00 2001 From: Richard Davey Date: Wed, 2 May 2018 17:23:51 +0100 Subject: [PATCH] Max Parallel Files limit raised from 4 to 32 --- src/boot/Config.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/boot/Config.js b/src/boot/Config.js index 930653ffe..71181efde 100644 --- a/src/boot/Config.js +++ b/src/boot/Config.js @@ -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);