add indicator for fire once on inject node

This commit is contained in:
Dave Conway-Jones 2016-11-17 13:56:37 +00:00
parent 8d5286703f
commit eeea8e530e
1 changed files with 5 additions and 0 deletions

View File

@ -201,6 +201,11 @@
icon: "inject.png",
label: function() {
var suffix = "";
// if fire once then add small indication
if (this.once) {
suffix = " ¹";
}
// but replace with repeat one if set to repeat
if (this.repeat || this.crontab) {
suffix = " ↻";
}