Fix click on debug message to reveal source node

This commit is contained in:
Nick O'Leary 2015-05-05 22:00:47 +01:00
parent 7112fd2a22
commit 7dc838dea6
1 changed files with 1 additions and 1 deletions

View File

@ -182,7 +182,7 @@
msg.onclick = function() {
var node = RED.nodes.node(o.id);
if (node) {
RED.view.showWorkspace(node.z);
RED.workspaces.show(node.z);
}
};