Your ROOT_URL in app.ini is https://git.cloudchain.link/ but you are visiting https://dash.bss.nz/open-source-mirrors/Radarr/src/commit/139bfc3c273a04e593ecf1c24e878f1780dc8a45/UI/Mixins/tablesorter.extensions.js You should set ROOT_URL correctly, otherwise the web may not work correctly.
Radarr/UI/Mixins/tablesorter.extensions.js

50 lines
1.3 KiB

$.tablesorter.addParser({
// set a unique id
id : 'title',
is : function (s) {
// 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'
});
$.tablesorter.addParser({
// set a unique id
id : 'date',
is : function (s) {
// 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 === '') {
return Date.create().addYears(100).format(Date.ISO8601_DATETIME);
}
return match;
},
// set type, either numeric or text
type : 'text'
});
$.tablesorter.addParser({
// set a unique id
id : 'innerHtml',
is : function (s) {
// 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'
});