Fixed: Sort by episode count takes number of episodes into account.

This commit is contained in:
Mark McDowall 2014-11-16 21:28:41 -08:00
parent 0ff5850a61
commit 5a4b49d46e
1 changed files with 12 additions and 1 deletions

View File

@ -59,7 +59,8 @@ define(
sortMappings: {
'title' : { sortKey: 'sortTitle' },
'nextAiring' : { sortValue: function (model, attr) {
'nextAiring' : {
sortValue: function (model, attr) {
var nextAiring = model.get(attr);
if (nextAiring) {
@ -74,6 +75,16 @@ define(
return Number.MAX_VALUE;
}
},
percentOfEpisodes: {
sortValue: function (model, attr) {
var percentOfEpisodes = model.get(attr);
var episodeCount = model.get('episodeCount');
return percentOfEpisodes + episodeCount / 1000000;
}
}
}
});