From 09c578e3610e8444b79c1862f0b3a33b3d7620c7 Mon Sep 17 00:00:00 2001 From: BigEd Date: Tue, 21 Dec 2010 22:31:38 +0000 Subject: [PATCH] shift-click: list members of channel-connected nodegroup --- expertWires.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/expertWires.js b/expertWires.js index 2504761..0b94749 100644 --- a/expertWires.js +++ b/expertWires.js @@ -460,7 +460,7 @@ function handleClick(e){ var cy = Math.round(y*grChipSize/600); // prepare two lines of status report var s1='x: ' + cx + ' y: ' + cy; - var s2='node: ' + w + ' ' + nodeName(w); + var s2='node: ' + w + ' ' + nodeName(w); if(w==-1) { setStatus(s1); // no node found, so report only coordinates return; @@ -483,7 +483,7 @@ function handleClick(e){ if(e.shiftKey) { getNodeGroup(w); nodelist = group; - s2 = "nodegroup from " + s2 + s2 = "nodegroup from " + s2 + " (nodes: " + group.join(",") + ")"; } hiliteNode(nodelist); setStatus(s1, s2);