Support timer in notifications too

This commit is contained in:
Chris van Marle
2019-03-13 12:01:49 +01:00
parent 4203065a06
commit c0ab2ac297
3 changed files with 7 additions and 5 deletions

View File

@@ -51,7 +51,7 @@ Module.register("alert",{
message: msg,
layout: "growl",
effect: this.config.effect,
ttl: this.config.display_time
ttl: message.timer !== undefined ? message.timer : this.config.display_time
}).show();
},
show_alert: function(params, sender) {