mirror of
https://github.com/MichMich/MagicMirror.git
synced 2025-06-27 19:53:36 +00:00
Changed iterative variable from m to n to appease tester
This commit is contained in:
parent
96be8d6fea
commit
a467d900c9
@ -56,8 +56,8 @@ var Loader = (function () {
|
||||
MM.modulesStarted(moduleObjects);
|
||||
|
||||
// Starting modules also hides any modules that have requeste dto be initially hidden
|
||||
for (var m in moduleObjects) {
|
||||
var module = moduleObjects[m];
|
||||
for (var n in moduleObjects) {
|
||||
var module = moduleObjects[n];
|
||||
|
||||
if (module.data.hiddenOnStartup) {
|
||||
Log.info("Initially hiding " + module.name);
|
||||
|
Loading…
x
Reference in New Issue
Block a user