From: Andrew Dolgov Date: Mon, 22 Aug 2005 03:26:07 +0000 (+0100) Subject: basic functionality pass 9 X-Git-Tag: 0.1~9 X-Git-Url: https://git.wh0rd.org/?a=commitdiff_plain;h=857a92708b77c3d570f4ec97936de6c19900abd6;p=tt-rss.git basic functionality pass 9 --- diff --git a/prefs.js b/prefs.js index 46679b7d..b068e01b 100644 --- a/prefs.js +++ b/prefs.js @@ -44,6 +44,12 @@ function notify(msg) { n.innerHTML = msg; + if (msg.length == 0) { + n.style.display = "none"; + } else { + n.style.display = "block"; + } + } function feedlist_callback() { @@ -91,9 +97,9 @@ function addFeed() { } function init() { - - notify("init"); - + update_feeds(); + notify(""); + }