summaryrefslogtreecommitdiff
path: root/src/client
diff options
context:
space:
mode:
Diffstat (limited to 'src/client')
-rw-r--r--src/client/model/graph.js10
1 files changed, 0 insertions, 10 deletions
diff --git a/src/client/model/graph.js b/src/client/model/graph.js
index c6f96d29..23e184a8 100644
--- a/src/client/model/graph.js
+++ b/src/client/model/graph.js
@@ -374,16 +374,6 @@ function Graph() {
rz_bus.names.push([newname]);
}
- this.editLinkTarget = function(src_id, dst_id, new_dst_id) {
- var link = findLink(src_id, dst_id, null);
- if (link !== undefined) {
- link.__dst = find_node__by_id(new_dst_id);
-
- } else {
-
- }
- }
-
this.update_node = function(node, new_node_spec, on_success, on_error) {
util.assert(node instanceof model_core.Node);