mirror of
https://github.com/MichMich/MagicMirror.git
synced 2025-07-01 13:33:15 +00:00
Changed var to let as requested
This commit is contained in:
parent
d83e696a8d
commit
49be3cbd6b
@ -56,8 +56,8 @@ var Loader = (function () {
|
||||
MM.modulesStarted(moduleObjects);
|
||||
|
||||
// Starting modules also hides any modules that have requested to be initially hidden
|
||||
for (var n in moduleObjects) {
|
||||
var thisModule = moduleObjects[n];
|
||||
for (let n in moduleObjects) {
|
||||
let thisModule = moduleObjects[n];
|
||||
|
||||
if (thisModule.data.hiddenOnStartup) {
|
||||
Log.info("Initially hiding " + thisModule.name);
|
||||
|
Loading…
x
Reference in New Issue
Block a user