diff options
author | Adam Spiers <git@adamspiers.org> | 2015-01-11 02:12:43 +0000 |
---|---|---|
committer | Adam Spiers <git@adamspiers.org> | 2015-01-11 02:12:43 +0000 |
commit | df39274e561814fb8519a72f2ec200d59c9ff117 (patch) | |
tree | 2f9372f53de1ba235f5b40028717956482de1256 /html | |
parent | 2efde6c4afcc4c773c49777aa16c360f39e65d4b (diff) | |
download | git-deps-df39274e561814fb8519a72f2ec200d59c9ff117.tar.gz |
visualization elements are no longer global
Diffstat (limited to 'html')
-rw-r--r-- | html/js/git-deps-graph.js | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/html/js/git-deps-graph.js b/html/js/git-deps-graph.js index 80eb5d1..f423177 100644 --- a/html/js/git-deps-graph.js +++ b/html/js/git-deps-graph.js @@ -28,7 +28,7 @@ d3cola //.jaccardLinkLengths(100) .avoidOverlaps(true); -// d3 visualization elements. Kept global to aid in-browser debugging. +// d3 visualization elements var container, svg, fg, node, path, tip, tip_template; var zoom; |