summaryrefslogtreecommitdiff
path: root/viewfeed.js
diff options
context:
space:
mode:
authorAndrew Dolgov <[email protected]>2009-10-07 14:44:51 +0400
committerAndrew Dolgov <[email protected]>2009-10-07 14:44:51 +0400
commitb7665618dbf7680524cb6323345e08ff5bf436f5 (patch)
tree7037772c9fb8cc3540ad05f50f2c8f3bee4c2a3e /viewfeed.js
parent6e35a862dd7c2f292ab805cf5a0d5bf8770a6525 (diff)
properly display loading indicators in category titles
Diffstat (limited to 'viewfeed.js')
-rw-r--r--viewfeed.js4
1 files changed, 3 insertions, 1 deletions
diff --git a/viewfeed.js b/viewfeed.js
index 7a614f783..2655774d0 100644
--- a/viewfeed.js
+++ b/viewfeed.js
@@ -119,7 +119,9 @@ function headlines_callback2(transport, feed_cur_page) {
if (feedr && !feedr.className.match("Selected")) {
feedr.className = feedr.className + "Selected";
}
- if (feedr && ll) feedr.removeChild(ll);
+
+ var fcap = $("FCAP-" + feed_id);
+ if (fcap && ll) fcap.removeChild(ll);
}