mirror of
https://github.com/MichMich/MagicMirror.git
synced 2025-06-28 04:02:12 +00:00
Changed variable name to appease tester
This commit is contained in:
parent
a467d900c9
commit
d83e696a8d
@ -57,11 +57,11 @@ var Loader = (function () {
|
|||||||
|
|
||||||
// Starting modules also hides any modules that have requested to 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