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

@@ -20,18 +20,6 @@ define(
pageSize: 1000
},
sorters: {
nextAiring: function (model) {
var nextAiring = model.get('nextAiring');
if (!nextAiring) {
return Number.MAX_VALUE;
}
return Moment(nextAiring).unix();
}
},
mode: 'client',
save: function () {
@@ -57,6 +45,17 @@ define(
});
return proxy.save();
},
//Sorters
nextAiring: function (model, attr) {
var nextAiring = model.get(attr);
if (!nextAiring) {
return Number.MAX_VALUE;
}
return Moment(nextAiring).unix();
}
});