A New Chapter for MagicMirror: The Community Takes the Lead
Read the statement by Michael Teeuw here.
Read the statement by Michael Teeuw here.
Modules to display Stock (Capital Stock)
-
@qqqqqqqq
You are in the modules base folder, but you need to change into the specific module folder instead -
3rd works for me too. And, thanks for your help, I’ve added currency in in too.
I got it to display it as static list by modifying the .js file as below. I’ve modified the line 26 from this
var wrapper = document.createElement("marquee");
to this
var wrapper = document.createElement("div");
And line 62
from
divider.innerHTML = ' • ';
to
divider.innerHTML = '<br>';
-