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

hidden feedlist: add disabled fade effect

This commit is contained in:
Andrew Dolgov 2008-02-19 17:33:03 +01:00
parent 24c1e1c144
commit 1924fa1bbf
2 changed files with 5 additions and 1 deletions

View File

@ -42,7 +42,9 @@ function viewfeed(feed, subop, is_cat, subop_param, skip_history, offset) {
if (getInitParam("theme") == "" && getInitParam("hide_feedlist")) {
Element.hide("feeds-holder");
// Effect.Fade('feeds-holder', {duration : 0.2,
// queue: { position: 'end', scope: 'FLFADEQ', limit: 1 }});
}
var force_nocache = false;

View File

@ -750,6 +750,8 @@ function toggle_feedlist() {
fl.style.zIndex = 30;
} else {
Element.hide(fl);
// Effect.Fade(fl, {duration : 0.2,
// queue: { position: 'end', scope: 'FLFADEQ', limit: 1 }});
}
} catch (e) {
exception_error(e, "toggle_feedlist");