From 6c7857f049491fc57fb642f5bf5467cc5f1870cf Mon Sep 17 00:00:00 2001 From: Dan Vanderkam Date: Fri, 4 Sep 2009 01:43:49 +0000 Subject: [PATCH] remove debug logging statements --- dygraph.js | 4 ---- 1 file changed, 4 deletions(-) diff --git a/dygraph.js b/dygraph.js index e49c935..9cec98e 100644 --- a/dygraph.js +++ b/dygraph.js @@ -794,7 +794,6 @@ DateGraph.prototype.numericTicks = function(minV, maxV) { var base_scale = Math.pow(10, i); for (var j = 0; j < mults.length; j++) { scale = base_scale * mults[j]; - console.log("i/j/scale: " + i + "/" + j + "/" + scale); low_val = Math.floor(minV / scale) * scale; high_val = Math.ceil(maxV / scale) * scale; nTicks = (high_val - low_val) / scale; @@ -804,9 +803,6 @@ DateGraph.prototype.numericTicks = function(minV, maxV) { } if (spacing > this.attrs_.pixelsPerYLabel) break; } - console.log("scale: " + scale); - console.log("low_val: " + low_val); - console.log("high_val: " + high_val); // Construct labels for the ticks var ticks = []; -- 2.7.4