1
0
mirror of https://git.tt-rss.org/git/tt-rss.git synced 2025-12-29 02:21:28 +00:00

theme system updates; remove old-skool theme; add neutral theme

This commit is contained in:
Andrew Dolgov
2010-01-15 13:43:17 +03:00
parent 5499ab51eb
commit b3af99a0c5
30 changed files with 226 additions and 1010 deletions

View File

@@ -555,12 +555,14 @@ function init_hidden_feedlist(theme) {
}
} */
function init_collapsable_feedlist(theme) {
function init_collapsable_feedlist() {
try {
debug("init_collapsable_feedlist");
if (theme != "" && theme != "compact" && theme != "graycube" &&
theme != "compat") return;
var theme = getInitParam("theme");
var options = getInitParam("theme_options");
if (theme != "" && !options.match("collapse_feedlist")) return;
var fbtn = $("collapse_feeds_btn");