summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAlon Levy <alon@pobox.com>2014-11-02 17:57:39 +0200
committerAlon Levy <alon@pobox.com>2014-11-02 18:16:57 +0200
commit445969fbab231a56ff612f29eef29960c1cbebbd (patch)
tree4234de5997831662e322fa0977970e4dababe880
parent9cd550c3a06d010754bea9862790a83151267ed1 (diff)
graph: fix missing semicolon
-rw-r--r--scripts/model/graph.js4
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) {