1
0
mirror of https://tt-rss.org/git/tt-rss.git synced 2024-06-20 11:16:36 +02:00

enable collapsed feedlist for compat theme

This commit is contained in:
Andrew Dolgov 2008-02-20 10:28:21 +01:00
parent f0e8468b41
commit 33aeea946a
2 changed files with 4 additions and 2 deletions

View File

@ -427,7 +427,8 @@ function init_collapsable_feedlist(theme) {
try {
debug("init_collapsable_feedlist");
if (theme != "" && theme != "compact" && theme != "graycube") return;
if (theme != "" && theme != "compact" && theme != "graycube" &&
theme != "compat") return;
var fbtn = document.getElementById("collapse_feeds_btn");

View File

@ -766,7 +766,8 @@ function collapse_feedlist() {
debug("toggle_feedlist");
var theme = getInitParam("theme");
if (theme != "" && theme != "compact" && theme != "graycube") return;
if (theme != "" && theme != "compact" && theme != "graycube" &&
theme != "compat") return;
var fl = document.getElementById("feeds-holder");
var fh = document.getElementById("headlines-frame");