summaryrefslogtreecommitdiff
path: root/tt-rss.js
diff options
context:
space:
mode:
authorAndrew Dolgov <[email protected]>2010-01-15 13:43:17 +0300
committerAndrew Dolgov <[email protected]>2010-01-15 13:43:17 +0300
commitb3af99a0c527dc0c9cfcf4579dd78f5b6d4e8d31 (patch)
tree70189ecebd5ef05967a3907e073a753d29970396 /tt-rss.js
parent5499ab51eb682a1313208a13353d8420c7f21b45 (diff)
theme system updates; remove old-skool theme; add neutral theme
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");