summaryrefslogtreecommitdiff
path: root/src/client/model
diff options
context:
space:
mode:
Diffstat (limited to 'src/client/model')
-rw-r--r--src/client/model/graph.js9
1 files changed, 0 insertions, 9 deletions
diff --git a/src/client/model/graph.js b/src/client/model/graph.js
index d163e406..3f9e89ab 100644
--- a/src/client/model/graph.js
+++ b/src/client/model/graph.js
@@ -535,15 +535,6 @@ function Graph(spec) {
return true;
}
- this.findCoordinates = function(id) {
- var n = find_node__by_id(id);
-
- if (n !== undefined) {
- $('.typeselection').css('top', n.y - 90);
- $('.typeselection').css('left', n.x - 230);
- }
- }
-
this.links_rm = function(links) {
var ids = links.map(function (link) {
util.assert(link.id !== undefined, 'bug: link without an id');