summaryrefslogtreecommitdiff
path: root/src/rz_core.js
diff options
context:
space:
mode:
authorAlon Levy <alon@pobox.com>2014-12-06 22:03:54 +0200
committerAlon Levy <alon@pobox.com>2014-12-06 22:03:54 +0200
commit3cd15311507bfb4844ef6b7802b0a90c9741f1fe (patch)
treec55dab3ecaaa5b4573ce2a4288d3dfa2380a24ce /src/rz_core.js
parentff798385d1d46aae2a289371e43f02922ca8c5aa (diff)
Node info edit - make name editable (Partial #189)
Diffstat (limited to 'src/rz_core.js')
-rw-r--r--src/rz_core.js3
1 files changed, 2 insertions, 1 deletions
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);