From b69b388b3109082d096065a4e029291d35d91c7d Mon Sep 17 00:00:00 2001 From: Matthias Winkelmann Date: Wed, 2 Mar 2016 14:16:52 +0100 Subject: [PATCH] fixed travis built --- src/scales/scale.time.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/scales/scale.time.js b/src/scales/scale.time.js index 0958edd98..03563df31 100644 --- a/src/scales/scale.time.js +++ b/src/scales/scale.time.js @@ -295,7 +295,7 @@ module.exports = function(Chart) { }, parseTime: function(label) { if (typeof this.options.time.parser === 'string') { - return moment(label, this.options.time.parser) + return moment(label, this.options.time.parser); } if (typeof this.options.time.parser === 'function') { return this.options.time.parser(label); -- 2.47.3