- 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
pull/231/head
Daniel Leong 10 years ago
parent d7f90d2ee4
commit f08359ab62

@ -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 );

Loading…
Cancel
Save