summaryrefslogtreecommitdiff
path: root/tt-rss.js
diff options
context:
space:
mode:
Diffstat (limited to 'tt-rss.js')
-rw-r--r--tt-rss.js4
1 files changed, 2 insertions, 2 deletions
diff --git a/tt-rss.js b/tt-rss.js
index 8b04eae61..b2de0bcdb 100644
--- a/tt-rss.js
+++ b/tt-rss.js
@@ -888,8 +888,8 @@ function collapse_feedlist() {
debug("collapse_feedlist");
var theme = getInitParam("theme");
- if (theme != "" && theme != "compact" && theme != "graycube" &&
- theme != "old-skool") return;
+ if (theme != "" &&
+ !getInitParam("theme_options").match("collapse_feedlist")) return;
var fl = $("feeds-holder");
var fh = $("headlines-frame");