From 78b87b3c473943f2f1b23586a75bb6e90c8141a5 Mon Sep 17 00:00:00 2001 From: Peter Cottle Date: Sat, 29 Aug 2015 08:39:29 -0700 Subject: [PATCH] remove console.log --- src/js/visuals/visNode.js | 1 - 1 file changed, 1 deletion(-) diff --git a/src/js/visuals/visNode.js b/src/js/visuals/visNode.js index ac3c198a..1cb08d86 100644 --- a/src/js/visuals/visNode.js +++ b/src/js/visuals/visNode.js @@ -420,7 +420,6 @@ var VisNode = VisBase.extend({ cy: y }); // continuation calculation - console.log('our speed', (vx * vx + vy * vy), 'height', Math.abs(y- maxHeight)); if ((vx * vx + vy * vy) < 0.1 && Math.abs(y - maxHeight) <= 0.1) { // dont need to animate anymore, we are on ground return false;