Add per-node filter option to Debug pane

This commit is contained in:
Nick O'Leary
2017-05-22 11:35:45 +01:00
parent f6b0459d27
commit 2a3e355437
12 changed files with 538 additions and 96 deletions

View File

@@ -168,6 +168,7 @@
}
}
};
RED.events.on("workspace:change", this.refreshMessageList);
this.handleDebugMessage = function(t,o) {
var sourceNode = RED.nodes.node(o.id) || RED.nodes.node(o.z);
@@ -186,8 +187,6 @@
};
RED.comms.subscribe("debug",this.handleDebugMessage);
RED.events.on("workspace:change", this.refreshMessageList);
$("#debug-tab-open").click(function(e) {
e.preventDefault();
subWindow = window.open(document.location.toString().replace(/[?#].*$/,"")+"debug/view/view.html"+document.location.search,"nodeREDDebugView","menubar=no,location=no,toolbar=no,chrome,height=500,width=600");