Merge branch 'dev' into new-export-dialog

This commit is contained in:
Nick O'Leary 2019-04-25 11:45:14 +01:00
commit 3e9d2a8062
No known key found for this signature in database
GPG Key ID: 4F2157149161A6C9
1 changed files with 3 additions and 0 deletions

View File

@ -306,8 +306,11 @@ Node.prototype.metric = function(eventname, msg, metricValue) {
/**
* status: { fill:"red|green", shape:"dot|ring", text:"blah" }
* or
* status: "simple text status"
*/
Node.prototype.status = function(status) {
if (typeof(status) === "string") { status = {text:status}; }
this._flow.handleStatus(this,status);
};