mirror of
https://github.com/MichMich/MagicMirror.git
synced 2025-06-27 19:53:36 +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.
|
// Notify core of loaded modules.
|
||||||
MM.modulesStarted(moduleObjects);
|
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) {
|
for (var n in moduleObjects) {
|
||||||
var module = moduleObjects[n];
|
var thisModule = moduleObjects[n];
|
||||||
|
|
||||||
if (module.data.hiddenOnStartup) {
|
if (thisModule.data.hiddenOnStartup) {
|
||||||
Log.info("Initially hiding " + module.name);
|
Log.info("Initially hiding " + thisModule.name);
|
||||||
module.hide();
|
thisModule.hide();
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
};
|
};
|
||||||
|
Loading…
x
Reference in New Issue
Block a user