mirror of
https://github.com/MichMich/MagicMirror.git
synced 2025-06-27 11:50:00 +00:00
Changed variable name to appease tester
This commit is contained in:
parent
a467d900c9
commit
d83e696a8d
10
js/loader.js
10
js/loader.js
@ -55,13 +55,13 @@ var Loader = (function () {
|
||||
// Notify core of loaded modules.
|
||||
MM.modulesStarted(moduleObjects);
|
||||
|
||||
// Starting modules also hides any modules that have requeste dto be initially hidden
|
||||
// Starting modules also hides any modules that have requested to be initially hidden
|
||||
for (var n in moduleObjects) {
|
||||
var module = moduleObjects[n];
|
||||
var thisModule = moduleObjects[n];
|
||||
|
||||
if (module.data.hiddenOnStartup) {
|
||||
Log.info("Initially hiding " + module.name);
|
||||
module.hide();
|
||||
if (thisModule.data.hiddenOnStartup) {
|
||||
Log.info("Initially hiding " + thisModule.name);
|
||||
thisModule.hide();
|
||||
}
|
||||
}
|
||||
};
|
||||
|
Loading…
x
Reference in New Issue
Block a user