From f08359ab6213b34567876f6c733019305b131646 Mon Sep 17 00:00:00 2001 From: Daniel Leong Date: Thu, 19 Nov 2015 17:24:10 +1300 Subject: [PATCH] - not sure if this is the fix Chrome seem to have trouble with the sorting. It is ordering pm first with this format of date time D/M/YYYY, h:m a on an ascending order --- sorting/datetime-moment.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/sorting/datetime-moment.js b/sorting/datetime-moment.js index ce5c197..698d11c 100644 --- a/sorting/datetime-moment.js +++ b/sorting/datetime-moment.js @@ -49,7 +49,7 @@ $.fn.dataTable.moment = function ( format, locale ) { } ); // Add sorting method - use an integer for the sorting - types.order[ 'moment-'+format+'-pre' ] = function ( d ) { + types.order[ 'moment-'+format ] = function ( d ) { return d === '' || d === null ? -Infinity : parseInt( moment( d.replace ? d.replace(/<.*?>/g, '') : d, format, locale, true ).format( 'x' ), 10 );