25 lines
348 B
JavaScript
Raw Normal View History

2016-03-24 17:19:32 +01:00
/* global Module */
/* Magic Mirror
* Module: HelloWorld
*
* By Michael Teeuw http://michaelteeuw.nl
* MIT Licensed.
*/
2016-04-05 14:35:11 -04:00
Module.register("helloworld",{
2016-03-24 17:19:32 +01:00
// Default module config.
defaults: {
2016-04-09 15:49:39 +02:00
text: "Hello World!"
2016-03-24 17:19:32 +01:00
},
2017-09-28 16:11:25 +02:00
getTemplate: function () {
2019-06-05 10:23:58 +02:00
return "helloworld.njk";
2017-09-28 16:11:25 +02:00
},
getTemplateData: function () {
2019-06-05 10:23:58 +02:00
return this.config;
2016-03-24 17:19:32 +01:00
}
});