diff options
Diffstat (limited to 'scripts')
| -rw-r--r-- | scripts/rhizicore.js | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/scripts/rhizicore.js b/scripts/rhizicore.js index 1feafa31..7c9ed274 100644 --- a/scripts/rhizicore.js +++ b/scripts/rhizicore.js @@ -925,8 +925,9 @@ function showInfo(d, i) { } $("#editbox").submit(function() { - if (d.type === "deliverable") + 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.editURL(d.id, d.type, $('#editurl').val()); graph.update(); |
