From: Evert Timberg Date: Sun, 3 Apr 2016 13:15:11 +0000 (-0400) Subject: Fix jshint error X-Git-Tag: v2.0.0~3^2 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=refs%2Fpull%2F2209%2Fhead;p=thirdparty%2FChart.js.git Fix jshint error --- diff --git a/src/scales/scale.category.js b/src/scales/scale.category.js index 44135ebdb..a93536129 100644 --- a/src/scales/scale.category.js +++ b/src/scales/scale.category.js @@ -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; }