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

pull/2/head
Mark McDowall 10 years ago
parent 0ff5850a61
commit 5a4b49d46e

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

Loading…
Cancel
Save