1
0
mirror of https://github.com/node-red/node-red.git synced 2023-10-10 13:36:53 +02:00

remove repeat symbol from inject if repeat is 0

This commit is contained in:
Dave Conway-Jones 2017-03-23 22:04:53 +00:00
parent b9379f2ddf
commit b1e3fc5761

View File

@ -203,7 +203,7 @@
suffix = " ¹"; suffix = " ¹";
} }
// but replace with repeat one if set to repeat // but replace with repeat one if set to repeat
if (this.repeat || this.crontab) { if ((this.repeat && this.repeat != 0) || this.crontab) {
suffix = " ↻"; suffix = " ↻";
} }
if (this.name) { if (this.name) {
@ -270,7 +270,7 @@
}); });
$(".inject-time-times").each(function() { $(".inject-time-times").each(function() {
for (var i=0;i<24;i++) { for (var i=0; i<24; i++) {
var l = (i<10?"0":"")+i+":00"; var l = (i<10?"0":"")+i+":00";
$(this).append($("<option></option>").val(i).text(l)); $(this).append($("<option></option>").val(i).text(l));
} }
@ -280,7 +280,7 @@
var start = Number($("#inject-time-interval-time-start").val()); var start = Number($("#inject-time-interval-time-start").val());
var end = Number($("#inject-time-interval-time-end").val()); var end = Number($("#inject-time-interval-time-end").val());
$("#inject-time-interval-time-end option").remove(); $("#inject-time-interval-time-end option").remove();
for (var i=start+1;i<25;i++) { for (var i=start+1; i<25; i++) {
var l = (i<10?"0":"")+i+":00"; var l = (i<10?"0":"")+i+":00";
if (i==24) { if (i==24) {
l = "00:00"; l = "00:00";