summaryrefslogtreecommitdiff
path: root/viewfeed.js
diff options
context:
space:
mode:
authorAndrew Dolgov <[email protected]>2008-05-19 08:37:44 +0100
committerAndrew Dolgov <[email protected]>2008-05-19 08:37:44 +0100
commit730dbf19107d42e1a6568ac7057375b9a2e58e9e (patch)
treef924daca27e77bcaf79ba1052ed3b5cda0411584 /viewfeed.js
parent36cebe0f8da738414e0256f433e9422f25b79605 (diff)
loading progress bar for main window
Diffstat (limited to 'viewfeed.js')
-rw-r--r--viewfeed.js7
1 files changed, 6 insertions, 1 deletions
diff --git a/viewfeed.js b/viewfeed.js
index da03a6a2d..24f3636fb 100644
--- a/viewfeed.js
+++ b/viewfeed.js
@@ -65,6 +65,8 @@ function clean_feed_selections() {
function headlines_callback2(transport, active_feed_id, is_cat, feed_cur_page) {
try {
+ loading_set_progress(100);
+
debug("headlines_callback2 [page=" + feed_cur_page + "]");
clean_feed_selections();
@@ -168,7 +170,7 @@ function headlines_callback2(transport, active_feed_id, is_cat, feed_cur_page) {
debug("headlines_callback: returned no data");
notify_error("Error while trying to load more headlines");
}
-
+
}
if (articles) {
@@ -228,6 +230,9 @@ function headlines_callback2(transport, active_feed_id, is_cat, feed_cur_page) {
_infscroll_request_sent = 0;
notify("");
+
+ remove_splash();
+
} catch (e) {
exception_error("headlines_callback2", e);
}