diff options
| author | Alon Levy <alon@pobox.com> | 2014-11-02 17:57:39 +0200 |
|---|---|---|
| committer | Alon Levy <alon@pobox.com> | 2014-11-02 18:16:57 +0200 |
| commit | 445969fbab231a56ff612f29eef29960c1cbebbd (patch) | |
| tree | 4234de5997831662e322fa0977970e4dababe880 /scripts/model | |
| parent | 9cd550c3a06d010754bea9862790a83151267ed1 (diff) | |
graph: fix missing semicolon
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 ee8691b9..42c01135 100644 --- a/scripts/model/graph.js +++ b/scripts/model/graph.js @@ -5,8 +5,8 @@ define(['signal', 'consts', 'util', 'textanalysis'], function ( function Graph(el) { - var nodes = [] - var links = []; + var nodes = [], + links = []; ///FUNCTIONS this.addNode = function(id, type, state) { |
