Fixed: Sorting on path in series editor

pull/4/head
Mark McDowall 9 years ago
parent dc80377a4c
commit 1d70c97983

@ -66,10 +66,11 @@ var Collection = PageableCollection.extend({
},
sortMappings : {
'title' : {
title : {
sortKey : 'sortTitle'
},
'nextAiring' : {
nextAiring : {
sortValue : function(model, attr, order) {
var nextAiring = model.get(attr);
@ -92,6 +93,14 @@ var Collection = PageableCollection.extend({
return percentOfEpisodes + episodeCount / 1000000;
}
},
path : {
sortValue : function(model) {
var path = model.get('path');
return path.toLowerCase();
}
}
}
});

Loading…
Cancel
Save