From b51aa60944148de04eb6bc5b52878ba28771bc57 Mon Sep 17 00:00:00 2001 From: Thibault34 Date: Wed, 5 Apr 2017 10:27:15 +0200 Subject: [PATCH] Add support dd/mm/YYYY hh:ii --- sorting/date-euro.js | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/sorting/date-euro.js b/sorting/date-euro.js index 758fd5c..83aa8d2 100644 --- a/sorting/date-euro.js +++ b/sorting/date-euro.js @@ -1,5 +1,5 @@ /** - * This plug-in will provide date sorting for the "dd/mm/YYY hh:ii:ss" + * This plug-in will provide date sorting for the "dd/mm/YYYY hh:ii:ss" * formatting, which is common in France and other European countries. It can * also be quickly adapted for other formatting as required. Furthermore, this * date sorting plug-in allows for empty values in the column. @@ -8,8 +8,8 @@ * [datetime](//datatables.net/blog/2014-12-18) plug-in provides enhanced * functionality and flexibility. * - * @name Date (dd/mm/YYY hh:ii:ss) - * @summary Sort date / time in the format `dd/mm/YYY hh:ii:ss` + * @name Date (dd/mm/YYYY hh:ii:ss) + * @summary Sort date / time in the format `dd/mm/YYYY hh:ii:ss` * @author [Ronan Guilloux](http://coolforest.net/) * @deprecated * @@ -29,7 +29,7 @@ var frDatea = $.trim(a).split(' '); var frTimea = (undefined != frDatea[1]) ? frDatea[1].split(':') : [00,00,00]; var frDatea2 = frDatea[0].split('/'); - x = (frDatea2[2] + frDatea2[1] + frDatea2[0] + frTimea[0] + frTimea[1] + frTimea[2]) * 1; + x = (frDatea2[2] + frDatea2[1] + frDatea2[0] + frTimea[0] + frTimea[1] + ((undefined != frTimea[2]) ? frTimea[2] : 0)) * 1; } else { x = Infinity;