From: Robert Becker Date: Thu, 4 Feb 2016 14:28:06 +0000 (+0100) Subject: Removed debug log. X-Git-Tag: v2.0.0~49^2~8 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=09721407d204bc66ef536760c9c7cea46264ff7d;p=thirdparty%2FChart.js.git Removed debug log. --- 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 {