1
0
mirror of https://git.tt-rss.org/git/tt-rss.git synced 2025-12-26 04:41:29 +00:00

when trying to load a feed from collapsed category, show loading indicator in category title

This commit is contained in:
Andrew Dolgov
2010-11-11 15:29:46 +03:00
parent 3974aad874
commit 2ab31493c9
2 changed files with 34 additions and 11 deletions

View File

@@ -287,11 +287,28 @@ function viewfeed(feed, subop, is_cat, subop_param, skip_history, offset) {
if (!is_cat && img) {
if (!img.src.match("indicator_white")) {
img.alt = img.src;
img.src = getInitParam("sign_progress");
}
var cat_list = feedr.parentNode;
if (!cat_list || Element.visible(cat_list)) {
if (!img.src.match("indicator_white")) {
img.alt = img.src;
img.src = getInitParam("sign_progress");
}
} else if (cat_list) {
feed_cat_id = cat_list.id.replace("FCATLIST-", "");
if (!$('FLL-' + feed_cat_id)) {
var ll = document.createElement('img');
ll.src = getInitParam("sign_progress_tiny");
ll.className = 'hlLoading';
ll.id = 'FLL-' + feed;
$("FCAP-" + feed_cat_id).appendChild(ll);
}
}
} else {
if (!$('FLL-' + feed)) {
@@ -304,8 +321,8 @@ function viewfeed(feed, subop, is_cat, subop_param, skip_history, offset) {
feedr.appendChild(ll);
}
}
}
}
}
}
new Ajax.Request("backend.php", {
parameters: query,
@@ -362,6 +379,14 @@ function toggleCollapseCat(cat) {
}
}
function isCatCollapsed(cat) {
try {
return Element.visible("FCATLIST-" + cat);
} catch (e) {
exception_error("isCatCollapsed", e);
}
}
function feedlist_dragsorted(ctr) {
try {
var elem = $("feedList");