From: Ben McCann Date: Wed, 26 Apr 2017 03:29:40 +0000 (-0700) Subject: Remove malformed comment X-Git-Tag: v2.6.0~2^2~15 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=8811759e1c986fff719af3a0cd2cbdfdcef8ae79;p=thirdparty%2FChart.js.git Remove malformed comment Fixes https://github.com/chartjs/Chart.js/issues/4181 --- diff --git a/src/scales/scale.category.js b/src/scales/scale.category.js index 0388baa00..cc5478adf 100644 --- a/src/scales/scale.category.js +++ b/src/scales/scale.category.js @@ -18,7 +18,7 @@ module.exports = function(Chart) { var data = this.chart.data; return (this.isHorizontal() ? data.xLabels : data.yLabels) || data.labels; }, - // Implement this so that + determineDataLimits: function() { var me = this; var labels = me.getLabels();