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/textanalysis.ui.js | |
| parent | ce7d10b880baf92fd447aaedf22f981d3a8bb277 (diff) | |
findCoordinates() - rm unused state param
Diffstat (limited to 'src/textanalysis.ui.js')
| -rw-r--r-- | src/textanalysis.ui.js | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/textanalysis.ui.js b/src/textanalysis.ui.js index a30fe43d..5f5718bd 100644 --- a/src/textanalysis.ui.js +++ b/src/textanalysis.ui.js @@ -102,11 +102,11 @@ function changeType(arg) { if (arg === 'up') { rz_core.graph.editType(id, null, nodetype); typeselection.showChosenType(nodetype); - rz_core.graph.findCoordinates(id, null); + rz_core.graph.findCoordinates(id); } else { rz_core.graph.editType(id, null, nodetype); typeselection.showChosenType(nodetype); - rz_core.graph.findCoordinates(id, null); + rz_core.graph.findCoordinates(id); } rz_core.update_view__graph(true); } |
