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,6 +42,8 @@ function viewfeed(feed, subop, is_cat, subop_param, skip_history, offset) {
if (getInitParam("theme") == "" && getInitParam("hide_feedlist")) { if (getInitParam("theme") == "" && getInitParam("hide_feedlist")) {
Element.hide("feeds-holder"); Element.hide("feeds-holder");
// Effect.Fade('feeds-holder', {duration : 0.2,
// queue: { position: 'end', scope: 'FLFADEQ', limit: 1 }});
} }

View file

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