summaryrefslogtreecommitdiff
path: root/prefs.js
diff options
context:
space:
mode:
authorAndrew Dolgov <[email protected]>2005-08-22 04:26:07 +0100
committerAndrew Dolgov <[email protected]>2005-08-22 04:26:07 +0100
commit857a92708b77c3d570f4ec97936de6c19900abd6 (patch)
tree3bff7b64ee90c23e3160ff96569858fdc6197d5c /prefs.js
parent71ad39598b4de8e481f03e4843ffc40a6ba56469 (diff)
basic functionality pass 9
Diffstat (limited to 'prefs.js')
-rw-r--r--prefs.js12
1 files changed, 9 insertions, 3 deletions
diff --git a/prefs.js b/prefs.js
index 46679b7de..b068e01be 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("");
+
}