From 102ff15a99ee0fbe18552e2a73903be374e88351 Mon Sep 17 00:00:00 2001 From: bugsounet Date: Tue, 22 Sep 2020 00:26:24 +0200 Subject: [PATCH] Checking formatting... All matched files use Prettier code style! --- js/module.js | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/js/module.js b/js/module.js index 81a83343..40f9b311 100644 --- a/js/module.js +++ b/js/module.js @@ -221,7 +221,7 @@ var Module = Class.extend({ this.identifier = data.identifier; this.hidden = false; - this.setConfig(data.config,data.configDeepMerge); + this.setConfig(data.config, data.configDeepMerge); }, /** @@ -231,7 +231,7 @@ var Module = Class.extend({ * @param {boolean} config Merge module config in deep. */ setConfig: function (config, deep) { - this.config= deep ? configMerge({}, this.defaults, config) : Object.assign({}, this.defaults, config); + this.config = deep ? configMerge({}, this.defaults, config) : Object.assign({}, this.defaults, config); }, /** @@ -481,7 +481,7 @@ function configMerge(result) { } } return result; -}; +} Module.definitions = {};