A New Chapter for MagicMirror: The Community Takes the Lead
Read the statement by Michael Teeuw here.
Read the statement by Michael Teeuw here.
Suspend hidden modules [done]
-
It would be create if hiding a module would fire a
suspend method
that could be used to stop timers and other tasks. You could then later restart them with aresume method
.In the
module.js
this could look like the following:suspend: function() { //stop timers }, resume: function() { //restart timers }, ...
This way we could save resources if multiple users use the mirror with different sets of modules.
-
Let me look into this …
-
-
Great thanks!