This commit is contained in:
Bernhard Posselt 2014-09-11 22:17:19 +02:00
Родитель 2c397bd5c0
Коммит 5c63092dd7
4 изменённых файлов: 7 добавлений и 7 удалений

Просмотреть файл

@ -266,9 +266,9 @@ app.controller('ContentController',
this.orderBy = function () { this.orderBy = function () {
if (SettingsResource.get('oldestFirst')) { if (SettingsResource.get('oldestFirst')) {
return '-id';
} else {
return 'id'; return 'id';
} else {
return '-id';
} }
}; };

2
js/build/app.min.js поставляемый

Различия файлов скрыты, потому что одна или несколько строк слишком длинны

Просмотреть файл

@ -61,9 +61,9 @@ function (Publisher, FeedResource, ItemResource, SettingsResource, data,
this.orderBy = function () { this.orderBy = function () {
if (SettingsResource.get('oldestFirst')) { if (SettingsResource.get('oldestFirst')) {
return '-id';
} else {
return 'id'; return 'id';
} else {
return '-id';
} }
}; };

Просмотреть файл

@ -64,11 +64,11 @@ describe('ContentController', function () {
data: {}, data: {},
}); });
expect(ctrl.orderBy()).toBe('id'); expect(ctrl.orderBy()).toBe('-id');
SettingsResource.set('oldestFirst', true); SettingsResource.set('oldestFirst', true);
expect(ctrl.orderBy()).toBe('-id'); expect(ctrl.orderBy()).toBe('id');
})); }));