From 09721407d204bc66ef536760c9c7cea46264ff7d Mon Sep 17 00:00:00 2001 From: Robert Becker Date: Thu, 4 Feb 2016 15:28:06 +0100 Subject: [PATCH] Removed debug log. --- src/scales/scale.linear.js | 1 - 1 file changed, 1 deletion(-) diff --git a/src/scales/scale.linear.js b/src/scales/scale.linear.js index 774e61ce8..cf94aed06 100644 --- a/src/scales/scale.linear.js +++ b/src/scales/scale.linear.js @@ -172,7 +172,6 @@ if (this.options.ticks.fixedStepSize) { for (var j = this.min; j <= this.max; ++j) { - console.log(j * this.options.ticks.fixedStepSize); this.ticks.push(j * this.options.ticks.fixedStepSize); } } else {