From 3cd15311507bfb4844ef6b7802b0a90c9741f1fe Mon Sep 17 00:00:00 2001 From: Alon Levy Date: Sat, 6 Dec 2014 22:03:54 +0200 Subject: Node info edit - make name editable (Partial #189) --- src/rz_core.js | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) (limited to 'src/rz_core.js') diff --git a/src/rz_core.js b/src/rz_core.js index 7684fe4a..1c6db8ee 100644 --- a/src/rz_core.js +++ b/src/rz_core.js @@ -715,7 +715,8 @@ function showNodeInfo(d, i) { if (d.type === "deliverable") { graph.editDates(d.id, null, new Date($("#editstartdate").val()), new Date($("#editenddate").val())); } - graph.editType(d.id,d.type,$('#edittype').val()); + graph.editName(d.id, $('.info').find('#editformname').val()); + graph.editType(d.id, d.type,$('#edittype').val()); graph.editURL(d.id, d.type, $('#editurl').val()); graph.editStatus(d.id, d.type, $('#editstatus').val()); update_view__graph(true); -- cgit v1.3.1