Sonarr/UI/Mixins/tablesorter.extensions.js

50 lines
1.3 KiB
JavaScript
Raw Normal View History

2013-02-17 01:16:37 +00:00
$.tablesorter.addParser({
// set a unique id
id : 'title',
is : function (s) {
2013-02-17 01:16:37 +00:00
// return false so this parser is not auto detected
return false;
},
format: function (s) {
// format your data for normalization
return s.match(/title="(.*?)"/)[1].toLowerCase();
},
// set type, either numeric or text
type : 'text'
2013-02-17 01:16:37 +00:00
});
$.tablesorter.addParser({
// set a unique id
id : 'date',
is : function (s) {
2013-02-17 01:16:37 +00:00
// return false so this parser is not auto detected
return false;
},
format: function (s) {
// format your data for normalization
var match = s.match(/data-date="(.*?)"/)[1];
if (match === '') {
2013-02-17 01:16:37 +00:00
return Date.create().addYears(100).format(Date.ISO8601_DATETIME);
}
2013-02-17 01:16:37 +00:00
return match;
},
// set type, either numeric or text
type : 'text'
2013-02-17 01:16:37 +00:00
});
$.tablesorter.addParser({
// set a unique id
id : 'innerHtml',
is : function (s) {
2013-02-17 01:16:37 +00:00
// return false so this parser is not auto detected
return false;
},
format: function (s) {
// format your data for normalization
return $(s).get(0).innerHTML;
},
// set type, either numeric or text
type : 'text'
2013-02-17 01:16:37 +00:00
});