enable collapsed feedlist for compat theme

master
Andrew Dolgov 17 years ago
parent f0e8468b41
commit 33aeea946a

@ -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");

@ -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");

Loading…
Cancel
Save