enable collapsed feedlist for compat theme
This commit is contained in:
parent
f0e8468b41
commit
33aeea946a
2 changed files with 4 additions and 2 deletions
|
@ -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…
Reference in a new issue