From 79c2edd797c491a1bfb4597a9e8e89ca49d7030b Mon Sep 17 00:00:00 2001 From: Alon Levy Date: Tue, 24 Mar 2015 17:40:09 +0200 Subject: client/view/graph_view: remove debug print --- src/client/view/graph_view.js | 1 - 1 file changed, 1 deletion(-) 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]) -- cgit v1.3.1