A New Chapter for MagicMirror: The Community Takes the Lead
Read the statement by Michael Teeuw here.
Read the statement by Michael Teeuw here.
Module creation workflow - Newbie
-
@sdetweil How can I construct ModuleName as an html?
-
@Temisola1 you cannot… it is a program… with a routine, called getDom() that returns the modules little bit of content for MM to display.
this part of my sample sets the content to display… u can make it part of an html document, a table, or paragraph…
// this is the major worker of the module, it provides the displayable content for this module getDom: function() { var wrapper = document.createElement("div"); // if user supplied message text in its module config, use it if(this.config.hasOwnProperty("message")){ // using text from module config block in config.js wrapper.innerHTML = this.config.message; } else{ // use hard coded text wrapper.innerHTML = "Hello world!"; } // pass the created content back to MM to add to DOM. return wrapper; },
u are sharing the page with all the other modules…
-
@sdetweil I think I see what your mean now. Can I do, for instance, something like
wrapper.innerhtml = "<h1>This is some random text</h1>"
-
@Temisola1 yes set the innerHtml to the html text string
-
@sdetweil Amazing. Thank you.