From a7fede4f465277dd0cb6ce1675153f6e4a6472e2 Mon Sep 17 00:00:00 2001 From: Evert Timberg Date: Sun, 3 Apr 2016 09:15:11 -0400 Subject: [PATCH] Fix jshint error --- src/scales/scale.category.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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; } -- 2.47.2