diff options
| author | Alon Levy <alon@pobox.com> | 2015-01-11 16:34:06 +0200 |
|---|---|---|
| committer | Alon Levy <alon@pobox.com> | 2015-01-11 16:34:06 +0200 |
| commit | 895b9f7eb7da793effe57308f47176ad3a264830 (patch) | |
| tree | d9f42e1b112556ed2eb7bae9292bfe327ad435d9 /src | |
| parent | 349520a1b5fc4e6044cc13c395308d7913f492f5 (diff) | |
client/view/graph_view: add missing semicolon
Diffstat (limited to 'src')
| -rw-r--r-- | src/client/view/graph_view.js | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/client/view/graph_view.js b/src/client/view/graph_view.js index 00bb10de..ea9acacd 100644 --- a/src/client/view/graph_view.js +++ b/src/client/view/graph_view.js @@ -208,7 +208,7 @@ function GraphView(spec) { link_g = link.enter().append('g') .attr('id', function(d){ return d.id; }) // append link id to enable data->visual mapping - .attr('class', 'link graph') + .attr('class', 'link graph'); link_g.append("path") .attr("class", function(d) { |
