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

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

View File

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