1
0
mirror of https://git.tt-rss.org/git/tt-rss.git synced 2025-12-16 08:05:57 +00:00

basic functionality pass 9

This commit is contained in:
Andrew Dolgov
2005-08-22 04:26:07 +01:00
parent 71ad39598b
commit 857a92708b

View File

@@ -44,6 +44,12 @@ function notify(msg) {
n.innerHTML = msg; n.innerHTML = msg;
if (msg.length == 0) {
n.style.display = "none";
} else {
n.style.display = "block";
}
} }
function feedlist_callback() { function feedlist_callback() {
@@ -91,9 +97,9 @@ function addFeed() {
} }
function init() { function init() {
notify("init");
update_feeds(); update_feeds();
notify("");
} }