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

view: display round loading indicator in FUPDPIC container

This commit is contained in:
Andrew Dolgov
2009-10-07 23:22:33 +04:00
parent 105b61b771
commit b103912495

View File

@@ -377,10 +377,16 @@ function article_callback2(transport, id, feed_id) {
if (!transport_error_check(transport)) return; if (!transport_error_check(transport)) return;
var ll = $('LL-' + id); /* var ll = $('LL-' + id);
var content = $('HLC-' + id); var content = $('HLC-' + id);
if (ll && content) content.removeChild(ll); if (ll && content) content.removeChild(ll); */
var upic = $('FUPDPIC-' + id);
if (upic) {
upic.src = 'images/blank_icon.gif';
}
if (id != last_requested_article) { if (id != last_requested_article) {
debug("requested article id is out of sequence, aborting"); debug("requested article id is out of sequence, aborting");
@@ -513,7 +519,7 @@ function view(id, feed_id, skip_history) {
// notify_progress("Loading, please wait...", true); // notify_progress("Loading, please wait...", true);
var content = $('HLC-' + id); /* var content = $('HLC-' + id);
if (content && !$('LL-' + id)) { if (content && !$('LL-' + id)) {
var ll = document.createElement('img'); var ll = document.createElement('img');
@@ -524,6 +530,12 @@ function view(id, feed_id, skip_history) {
content.appendChild(ll); content.appendChild(ll);
} */
var upic = $('FUPDPIC-' + id);
if (upic) {
upic.src = 'images/indicator_white.gif';
} }
} else if (cached_article && article_is_unread) { } else if (cached_article && article_is_unread) {