summaryrefslogtreecommitdiffstats
path: root/js/service
diff options
context:
space:
mode:
authorBernhard Posselt <dev@bernhard-posselt.com>2014-12-03 10:40:41 +0100
committerBernhard Posselt <dev@bernhard-posselt.com>2014-12-03 10:40:41 +0100
commit8e74fa253deea78486df2324071c94654bdca503 (patch)
treed4d7a0680d540028f2170fa8f4ecc277fe6076d3 /js/service
parent1c7837c7cc324e11966bcebb9f5ca61ae29519a9 (diff)
Make expand entries in compact view after jumping to next/previous feed optional with a setting
Diffstat (limited to 'js/service')
-rw-r--r--js/service/SettingsResource.js2
1 files changed, 2 insertions, 0 deletions
diff --git a/js/service/SettingsResource.js b/js/service/SettingsResource.js
index a184253b1..5b31e9085 100644
--- a/js/service/SettingsResource.js
+++ b/js/service/SettingsResource.js
@@ -18,6 +18,7 @@ app.service('SettingsResource', function ($http, BASE_URL) {
compact: false,
oldestFirst: null,
preventReadOnScroll: false,
+ compactExpand: false,
exploreUrl: ''
};
this.defaultLanguageCode = 'en';
@@ -57,6 +58,7 @@ app.service('SettingsResource', function ($http, BASE_URL) {
showAll: this.settings.showAll,
compact: this.settings.compact,
oldestFirst: this.settings.oldestFirst,
+ compactExpand: this.settings.compactExpand,
preventReadOnScroll: this.settings.preventReadOnScroll
}
});