Fixed Global Default Config Being Modified

This commit is contained in:
Andreas 2016-11-26 15:33:10 +01:00
parent 60ac4a3e86
commit 35f2ebc2aa
2 changed files with 2 additions and 2 deletions

View File

@ -42,7 +42,7 @@ This project adheres to [Semantic Versioning](http://semver.org/).
### Fixed ### Fixed
- Solve an issue where module margins would appear when the first module of a section was hidden. - Solve an issue where module margins would appear when the first module of a section was hidden.
- Solved visual display errors on chrome, if all modules in one of the right sections are hidden. - Solved visual display errors on chrome, if all modules in one of the right sections are hidden.
- Module default config values are no longer modified when setting config values. - Global and Module default config values are no longer modified when setting config values.
- Hide a region if all modules in a region are hidden. Prevention unwanted margins. - Hide a region if all modules in a region are hidden. Prevention unwanted margins.
- Replaced `electron-prebuilt` package with `electron` in order to fix issues that would happen after 2017. - Replaced `electron-prebuilt` package with `electron` in order to fix issues that would happen after 2017.
- Documentation of alert module - Documentation of alert module

View File

@ -295,7 +295,7 @@ var MM = (function() {
return; return;
} }
config = Object.assign(defaults, config); config = Object.assign({}, defaults, config);
}; };
/* setSelectionMethodsForModules() /* setSelectionMethodsForModules()