diff options
| author | LV-426 <lv-426@taproot.org.il> | 2014-11-02 18:13:55 +0200 |
|---|---|---|
| committer | LV-426 <lv-426@taproot.org.il> | 2014-11-02 18:13:55 +0200 |
| commit | 9cd550c3a06d010754bea9862790a83151267ed1 (patch) | |
| tree | f19a9c00b19186379c0328abfbc5675e9022878c /scripts/model | |
| parent | a27f3552962582b81441add561a6a81ac8d0c16e (diff) | |
getting rid of bad object names: myGraph -> Graph
Diffstat (limited to 'scripts/model')
| -rw-r--r-- | scripts/model/graph.js | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/scripts/model/graph.js b/scripts/model/graph.js index 5f8043f2..ee8691b9 100644 --- a/scripts/model/graph.js +++ b/scripts/model/graph.js @@ -3,7 +3,7 @@ define(['signal', 'consts', 'util', 'textanalysis'], function ( signal, consts, util, textanalysis) { -function myGraph(el) { +function Graph(el) { var nodes = [] var links = []; @@ -499,5 +499,5 @@ function myGraph(el) { }; - return myGraph; + return Graph; }); |
