mirror of
https://github.com/node-red/node-red.git
synced 2025-03-01 10:36:34 +00:00
Update for node 4 testing.
Changes to .travis.yml Patch from @dceejay to make a test portable Patch from @dceejay to correct a case where an int was expected
This commit is contained in:
@@ -64,7 +64,7 @@ module.exports = function(RED) {
|
||||
else if (node.op1Templated) { msg.payload = mustache.render(node.op1,msg); }
|
||||
else { msg.payload = node.op1; }
|
||||
if (node.op1type !== "nul") { node.send(msg); }
|
||||
if (node.duration === 0) { tout = "infinite"; }
|
||||
if (node.duration === 0) { tout = 0; }
|
||||
else {
|
||||
tout = setTimeout(function() {
|
||||
msg.payload = m2;
|
||||
|
Reference in New Issue
Block a user