diff options
| author | LV-426 <lv-426@taproot.org.il> | 2014-11-23 11:31:42 +0200 |
|---|---|---|
| committer | LV-426 <lv-426@taproot.org.il> | 2014-11-23 11:31:42 +0200 |
| commit | af20dd47d3cb254d4dd2638264fe79385a199832 (patch) | |
| tree | 97ee1f2e8e1865c05866b708ce7059230798d4b0 /src/model | |
| parent | e5aa5d16fe94facc69aac4beb9c5e541c63c3b9c (diff) | |
disconnecting model/graph -> textanalysis dep, model should not depend on presenter
Diffstat (limited to 'src/model')
| -rw-r--r-- | src/model/graph.js | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/model/graph.js b/src/model/graph.js index 4834a172..2949a44d 100644 --- a/src/model/graph.js +++ b/src/model/graph.js @@ -1,7 +1,7 @@ "use strict" -define(['signal', 'consts', 'util', 'textanalysis', 'model/core', 'model/util', 'rz_api_backend', 'rz_api_mesh'], -function (signal, consts, util, textanalysis, model_core, model_util, rz_api_backend, rz_api_mesh) { +define(['signal', 'consts', 'util', 'model/core', 'model/util', 'rz_api_backend', 'rz_api_mesh'], +function (signal, consts, util, model_core, model_util, rz_api_backend, rz_api_mesh) { function Graph() { @@ -575,7 +575,7 @@ function Graph() { x: node.x, y: node.y, }, false); - textanalysis.autoSuggestAddName(node.name.toLowerCase()); + // textanalysis.autoSuggestAddName(node.name.toLowerCase()); } for(i = 0; i < data["links"].length; i++){ link = data.links[i]; |
