diff options
| author | Alon Levy <alon@pobox.com> | 2014-10-06 16:05:12 +0300 |
|---|---|---|
| committer | Alon Levy <alon@pobox.com> | 2014-10-07 08:51:35 +0300 |
| commit | 3ac3aa40b393697b3b5c9fccd54ad444781eaf73 (patch) | |
| tree | 95fdb1c877c496ecda64fc970567c2d0905a9dcf | |
| parent | 5ffbcbb1630e0101e1be841008be53e7186bbc3a (diff) | |
fix broken save
| -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 0ac2f29a..91b2c634 100644 --- a/scripts/rhizicore.js +++ b/scripts/rhizicore.js @@ -452,7 +452,8 @@ function myGraph(el) { for(var i = 0 ; i < nodes.length ; i++){ var node = nodes[i]; d['nodes'].push({ - "id":node.id, + "id": node.id, + "name": node.name, "type":node.type, "state":"perm", "start":node.start, |
