summaryrefslogtreecommitdiff
path: root/feedlist.js
diff options
context:
space:
mode:
authorAndrew Dolgov <[email protected]>2009-10-07 21:48:47 +0400
committerAndrew Dolgov <[email protected]>2009-10-07 21:48:47 +0400
commit925832c63505ad74f4c0893c6800ed99540f8694 (patch)
treefc96a84612187cc23fc2d57c840f73660391459b /feedlist.js
parent219f57fd26a7f0184890fb123f6f7d22e26edc9d (diff)
feedlist: prevent multiple load indicators from appearing
Diffstat (limited to 'feedlist.js')
-rw-r--r--feedlist.js2
1 files changed, 1 insertions, 1 deletions
diff --git a/feedlist.js b/feedlist.js
index 3a5274a13..904a91ff5 100644
--- a/feedlist.js
+++ b/feedlist.js
@@ -323,7 +323,7 @@ function viewfeed(feed, subop, is_cat, subop_param, skip_history, offset) {
feedr = $('FEEDR-' + feed);
}
- if (feedr) {
+ if (feedr && !$('FLL-' + feed)) {
var ll = document.createElement('img');
ll.src = 'images/indicator_tiny.gif';