From 696a2fe0ee9b1fb8479cb1c8cd4c90ded106d3c1 Mon Sep 17 00:00:00 2001
From: Robert Konigsberg <konigsberg@google.com>
Date: Tue, 25 Jan 2011 12:55:03 -0500
Subject: [PATCH] Remove superfluous console.log

---
 dygraph.js | 1 -
 1 file changed, 1 deletion(-)

diff --git a/dygraph.js b/dygraph.js
index 45ccd7b..9826414 100644
--- a/dygraph.js
+++ b/dygraph.js
@@ -965,7 +965,6 @@ Dygraph.movePan = function(event, g, context) {
       var axis = g.axes_[i];
       var maxValue = axis.draggingValue + y_frac * axis.dragValueRange;
       var minValue = maxValue - axis.dragValueRange;
-      console.log(axis.draggingValue, axis.dragValueRange, minValue, maxValue, y_frac);
       axis.valueWindow = [ minValue, maxValue ];
     }
   }
-- 
2.7.4