MagicMirror/modules/default/helloworld/helloworld.js
2017-09-28 16:11:25 +02:00

24 lines
347 B
JavaScript

/* global Module */
/* Magic Mirror
* Module: HelloWorld
*
* By Michael Teeuw http://michaelteeuw.nl
* MIT Licensed.
*/
Module.register("helloworld",{
// Default module config.
defaults: {
text: "Hello World!"
},
getTemplate: function () {
return "helloworld.html"
},
getTemplateData: function () {
return this.config
}
});