diff options
| author | Andrew Dolgov <fox@madoka.spb.ru> | 2005-08-22 04:26:07 +0100 |
|---|---|---|
| committer | Andrew Dolgov <fox@madoka.spb.ru> | 2005-08-22 04:26:07 +0100 |
| commit | 857a92708b77c3d570f4ec97936de6c19900abd6 (patch) | |
| tree | 3bff7b64ee90c23e3160ff96569858fdc6197d5c /prefs.js | |
| parent | 71ad39598b4de8e481f03e4843ffc40a6ba56469 (diff) | |
basic functionality pass 9
Diffstat (limited to 'prefs.js')
| -rw-r--r-- | prefs.js | 12 |
1 files changed, 9 insertions, 3 deletions
@@ -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(""); + } |