Private GIT

Skip to content
Snippets Groups Projects
Commit a579f327 authored by miigotu's avatar miigotu
Browse files

Merge pull request #2511 from OmgImAlexis/fixes-comingEpisodes-airdate-sort

Fixes airdate on comingEpisodes
parents ed927d57 7f9a2ca1
Branches
Tags
No related merge requests found
......@@ -29,7 +29,7 @@ if($('meta[data-var="sickbeard.COMING_EPS_LAYOUT"]').data('content') == 'list'){
return false
},
format: function(s) {
return s
return new Date(s).getTime()
},
type: 'numeric'
});
......@@ -45,7 +45,7 @@ $(document).ready(function(){
widgets: ['stickyHeaders'],
sortList: sortList,
textExtraction: {
0: function(node) { return $(node).find('span').text().toLowerCase() },
0: function(node) { return $(node).find('time').attr('datetime') },
5: function(node) { return $(node).find('span').text().toLowerCase() }
},
headers: {
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment