Vladimir Hodakov
15b8f3a13e
Now we can again deploy it with moden Jekyll and restore lorchess.ru archive.
37 lines
729 B
JavaScript
37 lines
729 B
JavaScript
/*!
|
|
* Extract dates using popular natural language date parsers
|
|
*/
|
|
/*jshint jquery:true */
|
|
;(function($){
|
|
"use strict";
|
|
|
|
/*! Sugar (http://sugarjs.com/dates#comparing_dates)
|
|
* demo: http://jsfiddle.net/Mottie/abkNM/551/
|
|
*/
|
|
$.tablesorter.addParser({
|
|
id: "sugar",
|
|
is: function() {
|
|
return false;
|
|
},
|
|
format: function(s) {
|
|
return Date.create ? Date.create(s).getTime() || s : new Date(s).getTime() || s;
|
|
},
|
|
type: "numeric"
|
|
});
|
|
|
|
/*! Datejs (http://www.datejs.com/)
|
|
* demo: http://jsfiddle.net/Mottie/abkNM/550/
|
|
*/
|
|
$.tablesorter.addParser({
|
|
id: "datejs",
|
|
is: function() {
|
|
return false;
|
|
},
|
|
format: function(s) {
|
|
return Date.parse && Date.parse(s) || s;
|
|
},
|
|
type: "numeric"
|
|
});
|
|
|
|
})(jQuery);
|