diff --git a/nodes/core/core/89-delay.html b/nodes/core/core/89-delay.html index ff2cd6610..f060c8f6e 100644 --- a/nodes/core/core/89-delay.html +++ b/nodes/core/core/89-delay.html @@ -125,7 +125,7 @@ return this.name?"node_label_italic":""; }, oneditprepare: function() { - $( "#node-input-timeout" ).spinner({min:1,max:60}); + $( "#node-input-timeout" ).spinner({min:1}); $( "#node-input-rate" ).spinner({min:1}); $( "#node-input-randomFirst" ).spinner({min:0}); diff --git a/nodes/core/core/89-delay.js b/nodes/core/core/89-delay.js index ac4fbfba6..e25bc1b46 100644 --- a/nodes/core/core/89-delay.js +++ b/nodes/core/core/89-delay.js @@ -87,8 +87,8 @@ module.exports = function(RED) { node.send(msg); }, node.timeout); this.idList.push(id); - if ((node.timeout > 1000) && (node.idList.length === 0)) { - node.status({fill:"blue",shape:"dot"}); + if ((node.timeout > 1000) && (node.idList.length !== 0)) { + node.status({fill:"blue",shape:"dot",text:" "}); } });