summaryrefslogtreecommitdiff
path: root/src/client/view/graph_view.js
diff options
context:
space:
mode:
authorAlon Levy <alon@pobox.com>2015-03-24 17:40:09 +0200
committerAlon Levy <alon@pobox.com>2015-03-24 17:40:09 +0200
commit79c2edd797c491a1bfb4597a9e8e89ca49d7030b (patch)
treebb185d3ec34703e9141e477db018b68020f14b1a /src/client/view/graph_view.js
parentfbda0e405b2454fb47a4d1f00adebd4d5621f07b (diff)
client/view/graph_view: remove debug print
Diffstat (limited to 'src/client/view/graph_view.js')
-rw-r--r--src/client/view/graph_view.js1
1 files changed, 0 insertions, 1 deletions
diff --git a/src/client/view/graph_view.js b/src/client/view/graph_view.js
index 7a3a61f4..4fd5f2c4 100644
--- a/src/client/view/graph_view.js
+++ b/src/client/view/graph_view.js
@@ -993,7 +993,6 @@ function GraphView(spec) {
var d_src = graph.degree(link.__src),
d_dst = graph.degree(link.__dst),
ret = (d_src + d_dst) * 10 + 10;
- console.log(d_src + ', ' + d_dst + ', ' + ret);
return ret;
})
.size([w, h])