mirror of
https://git.tt-rss.org/git/tt-rss.git
synced 2025-12-16 08:05:57 +00:00
enable collapsed feedlist for compat theme
This commit is contained in:
@@ -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");
|
||||
|
||||
Reference in New Issue
Block a user