1
0
mirror of https://git.tt-rss.org/git/tt-rss.git synced 2025-12-22 09:11:29 +00:00

new option: HIDE_FEEDLIST (bump schema)

This commit is contained in:
Andrew Dolgov
2008-02-20 04:37:24 +01:00
parent 8b557634e2
commit fca933507d
7 changed files with 17 additions and 8 deletions

View File

@@ -40,7 +40,7 @@ function viewfeed(feed, subop, is_cat, subop_param, skip_history, offset) {
cache_invalidate("F:" + feed);
}
if (getInitParam("theme") == "" && getInitParam("hide_feedlist")) {
if (getInitParam("theme") == "" && getInitParam("hide_feedlist") == 1) {
Element.hide("feeds-holder");
// Effect.Fade('feeds-holder', {duration : 0.2,
// queue: { position: 'end', scope: 'FLFADEQ', limit: 1 }});
@@ -346,7 +346,7 @@ function feedlist_init() {
if (getInitParam("theme") == "") {
setTimeout("hide_footer()", 5000);
if (getInitParam("hide_feedlist")) {
if (getInitParam("hide_feedlist") == 1) {
init_hidden_feedlist();
}
}