Update datetime-moment plugin. Add a Boolean parameter that allows to invert the order of empty values.

pull/430/head
Alex 6 years ago
parent 50ff31c606
commit 60362bf3c9

@ -28,7 +28,7 @@
}
}(function ($, moment) {
$.fn.dataTable.moment = function ( format, locale ) {
$.fn.dataTable.moment = function ( format, reverseEmpties, locale ) {
var types = $.fn.dataTable.ext.type;
// Add type detection
@ -66,7 +66,7 @@ $.fn.dataTable.moment = function ( format, locale ) {
}
return !moment(d, format, locale, true).isValid() ?
Infinity :
(reverseEmpties ? -Infinity : Infinity) :
parseInt( moment( d, format, locale, true ).format( 'x' ), 10 );
};
};

Loading…
Cancel
Save