From e1710ca939bef15a25f073f78ac67a5bb4b47d55 Mon Sep 17 00:00:00 2001 From: Matt Fisher Date: Fri, 4 Apr 2014 11:52:37 -0700 Subject: [PATCH] Added missing semicolon on DateFormat return. --- export-csv.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/export-csv.js b/export-csv.js index 5e32cc5..f4d98f7 100644 --- a/export-csv.js +++ b/export-csv.js @@ -26,7 +26,7 @@ xTitle = 'X values'; if (series.xAxis.isDatetimeAxis) { xData = Highcharts.map(xData, function (x) { - return Highcharts.dateFormat(dateFormat, x) + return Highcharts.dateFormat(dateFormat, x); }); xTitle = 'DateTime'; } else if (series.xAxis.categories) {