From ed5bc2f4760e33b5fc8843f96448a8538a573ea0 Mon Sep 17 00:00:00 2001 From: Anmol Agrawal Date: Sun, 12 Oct 2014 14:15:46 +0530 Subject: Fixes #88: Property window doesn’t show up when a node is deleted. MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- scripts/rhizicore.js | 1 + 1 file changed, 1 insertion(+) (limited to 'scripts') diff --git a/scripts/rhizicore.js b/scripts/rhizicore.js index 71219d95..bdc70c6f 100644 --- a/scripts/rhizicore.js +++ b/scripts/rhizicore.js @@ -1011,6 +1011,7 @@ function showInfo(d, i) { if (confirm('This node and all its connections will be deleted, are you sure?')) { graph.removeNode(d.id, null); graph.update(false); + document.querySelector('.info').style.visibility = "hidden"; } }); } else { -- cgit v1.3.1