summaryrefslogtreecommitdiffstats
path: root/js/build/app.js
diff options
context:
space:
mode:
Diffstat (limited to 'js/build/app.js')
-rw-r--r--js/build/app.js4
1 files changed, 2 insertions, 2 deletions
diff --git a/js/build/app.js b/js/build/app.js
index 31c40a574..498f6eef9 100644
--- a/js/build/app.js
+++ b/js/build/app.js
@@ -266,9 +266,9 @@ app.controller('ContentController',
this.orderBy = function () {
if (SettingsResource.get('oldestFirst')) {
- return '-id';
- } else {
return 'id';
+ } else {
+ return '-id';
}
};