1
0
mirror of https://git.tt-rss.org/git/tt-rss.git synced 2025-12-28 00:01:28 +00:00

fix notify box, add notify prompt in viewfeed

This commit is contained in:
Andrew Dolgov
2006-09-28 13:42:47 +01:00
parent 30031575b0
commit 33b8cab44f
4 changed files with 19 additions and 3 deletions

View File

@@ -94,6 +94,13 @@ function viewfeed(feed, subop, is_cat, subop_param) {
debug(query);
/* var container = document.getElementById("headlines-frame");
container.innerHTML = "<div class=\"loadingPrompt\"><img src=\"images/indicator_white.gif\">&nbsp;" +
"Loading, please wait...</div>"; */
notify("Loading, please wait...", true);
if (xmlhttp_ready(xmlhttp)) {
xmlhttp.open("GET", query, true);
xmlhttp.onreadystatechange=headlines_callback;
@@ -102,7 +109,6 @@ function viewfeed(feed, subop, is_cat, subop_param) {
debug("xmlhttp busy (@feeds)");
}
} catch (e) {
exception_error("viewfeed", e);
}