summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorAlon Levy <alon@pobox.com>2015-01-06 12:07:41 +0200
committerAlon Levy <alon@pobox.com>2015-01-06 12:07:41 +0200
commitdc2679076f93d6c0d0645543b5131e30afcba871 (patch)
tree6636180dc884987ea718fc826e4d918f8fe0d073 /src
parent85a0390fe2d32d96216d6d390fee99902d58beac (diff)
client/graph_view: remove debug prints from animation code
Diffstat (limited to 'src')
-rw-r--r--src/client/view/graph_view.js3
1 files changed, 0 insertions, 3 deletions
diff --git a/src/client/view/graph_view.js b/src/client/view/graph_view.js
index 609e7736..96c6dee1 100644
--- a/src/client/view/graph_view.js
+++ b/src/client/view/graph_view.js
@@ -469,10 +469,8 @@ function GraphView(spec) {
step_msec = gv.layout_animation.step_msec;
util.assert(b_dict.target !== undefined, "bubble radius target is undefined");
- console.log(graph_name + ": bubble " + b_dict.target + ", " + gv.bubble_radius + ", " + now_start);
// we loop some just to settle the temporary graph animation
if (d_current == 0 && d_bubble_radius == 0) {
- console.log(graph_name + ': clearing interval ' + gv.layout_animation.interval);
clearInterval(gv.layout_animation.interval);
gv.layout_animation.interval = null;
} else {
@@ -493,7 +491,6 @@ function GraphView(spec) {
};
if (gv.layout_animation.interval == null) {
gv.layout_animation.interval = setInterval(on_interval, gv.layout_animation.step_msec);
- console.log(graph_name + ': starting interval ' + gv.layout_animation.interval);
}
if (temporary) {
gv.layout_animation.current = 0;