A New Chapter for MagicMirror: The Community Takes the Lead
Read the statement by Michael Teeuw here.
Read the statement by Michael Teeuw here.
Welcome Message not shown / Alert not working
-
hi …
having the problem that alert, also welcome_message, is not shown.
simple config:
modules: [ { module: "alert", welcome_message: true }, { module: "updatenotification", position: "top_bar" }, { module: "clock", position: "top_left" } ] };
no error in console. alert js/css loaded.
regards
tabsl
-
@tabsl said in Welcome Message not shown / Alert not working:
{ module: "alert", welcome_message: true },
yes, this is a config option, so it needs a config:{} block
{ module: "alert", config:{ welcome_message: true } },
-
ahhh, sorry ;-) not welcome is working, but not my own alert in my module :-(
-
@tabsl you should wait til you receive a notification “ALL_MODULES_STARTED”
before sending notifications…function notificationReceived(notification, payload, sender){ if (notification === "ALL_MODULES_STARTED") { this.sendNotification('SHOW_ALERT', { title:'test', message:'test}) } },
-
@sdetweil thank you …
-
@tabsl did that fix it?