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

clear trigger status icon on re-deploy

This commit is contained in:
Dave Conway-Jones 2016-02-04 22:13:08 +00:00
parent 633a6a0ee6
commit 4d84d624b1

View File

@ -91,8 +91,8 @@ module.exports = function(RED) {
this.on("close", function() { this.on("close", function() {
if (tout) { if (tout) {
clearTimeout(tout); clearTimeout(tout);
node.status({});
} }
node.status({});
}); });
} }
RED.nodes.registerType("trigger",TriggerNode); RED.nodes.registerType("trigger",TriggerNode);