]> git.ipfire.org Git - thirdparty/Chart.js.git/commitdiff
Fix jshint error 2209/head
authorEvert Timberg <evert.timberg+github@gmail.com>
Sun, 3 Apr 2016 13:15:11 +0000 (09:15 -0400)
committerEvert Timberg <evert.timberg+github@gmail.com>
Sun, 3 Apr 2016 13:15:11 +0000 (09:15 -0400)
src/scales/scale.category.js

index 44135ebdb06e440e8582925a5b5dac4f50696a39..a935361290a6c281bc3dbd965293fa9679fe52a6 100644 (file)
@@ -16,7 +16,7 @@ module.exports = function(Chart) {
 
                        if (this.options.ticks.min !== undefined) {
                                // user specified min value
-                               findIndex = helpers.indexOf(this.chart.data.labels, this.options.ticks.min)
+                               findIndex = helpers.indexOf(this.chart.data.labels, this.options.ticks.min);
                                this.startIndex = findIndex !== -1 ? findIndex : this.startIndex;
                        }