diff options
| author | Alon Levy <alon@pobox.com> | 2015-01-05 17:20:20 +0200 |
|---|---|---|
| committer | Alon Levy <alon@pobox.com> | 2015-01-05 17:20:20 +0200 |
| commit | cb0c218b3609947c32574c47bf85a0153f41ac57 (patch) | |
| tree | da2541a563952154281c9ff6bfbb31374ae59329 /src/client/view/graph_view.js | |
| parent | 2f8f2a0e4d6d8fa32fb2c32623c3fa6fc1967ca9 (diff) | |
client: link removal to server works, missing update of client
Diffstat (limited to 'src/client/view/graph_view.js')
| -rw-r--r-- | src/client/view/graph_view.js | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/client/view/graph_view.js b/src/client/view/graph_view.js index 43a7e849..178a5209 100644 --- a/src/client/view/graph_view.js +++ b/src/client/view/graph_view.js @@ -224,7 +224,7 @@ function GraphView(spec) { view.edge_info.on_delete(function () { view.edge_info.hide(); - graph.removeLink(that.link); + graph.links_rm([that.link]); }); view.edge_info.show(d); selection.update([src, dst]); |
