NextAiring sorting is not as drunk anymore

This commit is contained in:
Mark McDowall 2014-01-16 12:37:31 -08:00
parent 642f56c221
commit d89d9e67c2
3 changed files with 16 additions and 15 deletions

View file

@ -68,9 +68,11 @@ define(
var key = this.state.sortKey;
var order = this.state.order;
if (this.sorters && this.sorters[key] && this.mode === 'client') {
if (this[key] && this.mode === 'client') {
var sortValue = this[key];
this.setSorting(key, order, { sortValue: sortValue });
var comparator = this._makeComparator(key, order, sortValue);
this.fullCollection.comparator = comparator;
this.fullCollection.sort();