]> git.ipfire.org Git - thirdparty/Chart.js.git/commitdiff
fixed travis built
authorMatthias Winkelmann <matthi@matthi.coffee>
Wed, 2 Mar 2016 13:16:52 +0000 (14:16 +0100)
committerMatthias Winkelmann <matthi@matthi.coffee>
Wed, 2 Mar 2016 13:16:52 +0000 (14:16 +0100)
src/scales/scale.time.js

index 0958edd983614e055dbea9a749e7d61ff2ac3d87..03563df31bbad76be1192ac79d7db90fd1de8b6a 100644 (file)
@@ -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);