]> git.ipfire.org Git - thirdparty/Chart.js.git/commitdiff
Removed debug log.
authorRobert Becker <robert@rbecker.eu>
Thu, 4 Feb 2016 14:28:06 +0000 (15:28 +0100)
committerRobert Becker <robert@rbecker.eu>
Thu, 4 Feb 2016 14:28:06 +0000 (15:28 +0100)
src/scales/scale.linear.js

index 774e61ce8c5cfaed142d46c9061a4d7e56f45063..cf94aed06cb6b9ccacaad7143b8f30010c5328da 100644 (file)
 
             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 {