From 22e064069510573b1baf3d1c9b1d97493bd48795 Mon Sep 17 00:00:00 2001 From: Andrew Dolgov Date: Wed, 21 Nov 2007 08:08:25 +0100 Subject: [PATCH 1/1] feed_init: fade out footer after timeout (closes #171) --- feedlist.js | 33 +++++++++++++++++++++++++++++++++ 1 file changed, 33 insertions(+) diff --git a/feedlist.js b/feedlist.js index 577357b4..03dea359 100644 --- a/feedlist.js +++ b/feedlist.js @@ -269,7 +269,40 @@ function feedlist_init() { } } + if (getInitParam("theme") == "") { + setTimeout("hide_footer()", 5000); + } + } catch (e) { exception_error("feedlist/init", e); } } + +function hide_footer_af(effect) { + try { + var c = document.getElementById("content-frame"); + + if (c) { + c.style.bottom = "0px"; + } else { + var h = document.getElementById("headlines-frame"); + + if (h) { + h.style.bottom = "0px"; + } + } + + } catch (e) { + exception_error("hide_footer_af", e); + } +} + +function hide_footer() { + try { + if (Element.visible("footer")) { + new Effect.Fade("footer", { afterFinish: hide_footer_af }); + } + } catch (e) { + exception_error("hide_footer", e); + } +} -- 2.39.2