summaryrefslogtreecommitdiff
path: root/tt-rss.js
diff options
context:
space:
mode:
authorAndrew Dolgov <[email protected]>2005-08-22 10:27:32 +0100
committerAndrew Dolgov <[email protected]>2005-08-22 10:27:32 +0100
commit1c37c607df0a158fff6276a124299fa0cf8fc362 (patch)
tree54ecea8842acbfffa649ebd030638f35be5b4eb6 /tt-rss.js
parent476cac422f49d08d2278891f4f3d4b60c69d7ff1 (diff)
more notify() integration
Diffstat (limited to 'tt-rss.js')
-rw-r--r--tt-rss.js11
1 files changed, 8 insertions, 3 deletions
diff --git a/tt-rss.js b/tt-rss.js
index d7959037d..788750afa 100644
--- a/tt-rss.js
+++ b/tt-rss.js
@@ -68,7 +68,10 @@ function viewfeed_callback() {
}
}
- }
+
+ notify("");
+
+ }
}
function view_callback() {
@@ -109,14 +112,16 @@ function catchupAllFeeds() {
function viewfeed(feed, skip, subop) {
- document.getElementById('headlines').innerHTML='Loading headlines, please wait...';
- document.getElementById('content').innerHTML='&nbsp;';
+// document.getElementById('headlines').innerHTML='Loading headlines, please wait...';
+// document.getElementById('content').innerHTML='&nbsp;';
xmlhttp.open("GET", "backend.php?op=viewfeed&feed=" + param_escape(feed) +
"&skip=" + param_escape(skip) + "&subop=" + param_escape(subop) , true);
xmlhttp.onreadystatechange=viewfeed_callback;
xmlhttp.send(null);
+ notify("Loading headlines...");
+
}
function view(id,feed_id) {