diff options
| author | LV-426 <lv-426@taproot.org.il> | 2014-12-07 19:46:03 +0200 |
|---|---|---|
| committer | Alon Levy <alon@pobox.com> | 2014-12-16 10:59:14 +0200 |
| commit | 9d8a9524c33cafbf8525d3c0b901ae007dc05694 (patch) | |
| tree | 89f0e0e5d48096aac3bf4406e0820ae9e081fdbd /src/model | |
| parent | ce7d10b880baf92fd447aaedf22f981d3a8bb277 (diff) | |
findCoordinates() - rm unused state param
Diffstat (limited to 'src/model')
| -rw-r--r-- | src/model/graph.js | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/src/model/graph.js b/src/model/graph.js index cf632815..abff1b2a 100644 --- a/src/model/graph.js +++ b/src/model/graph.js @@ -400,11 +400,11 @@ function Graph() { return this._editProperty(id, state, 'state', newstate); } - this.findCoordinates = function(id, type) { - var index = findNode(id, type); + this.findCoordinates = function(id) { + var n = find_node__by_id(id); if ((index !== undefined)) { - $('.typeselection').css('top', index.y - 90); - $('.typeselection').css('left', index.x - 230); + $('.typeselection').css('top', n.y - 90); + $('.typeselection').css('left', n.x - 230); } } |
