mirror of
https://git.tt-rss.org/git/tt-rss.git
synced 2025-12-14 05:25:56 +00:00
limit fade effect scope when hiding feeds/categories
This commit is contained in:
@@ -934,7 +934,9 @@ function hideOrShowFeedsCategory(doc, node, hide, cat_node) {
|
|||||||
|
|
||||||
if (hide && !has_unread) {
|
if (hide && !has_unread) {
|
||||||
//node.childNodes[i].style.display = "none";
|
//node.childNodes[i].style.display = "none";
|
||||||
Effect.Fade(node.childNodes[i], {duration : 0.3});
|
var id = node.childNodes[i].id;
|
||||||
|
Effect.Fade(node.childNodes[i], {duration : 0.3,
|
||||||
|
queue: { position: 'end', scope: 'FFADE-' + id, limit: 1 }});
|
||||||
}
|
}
|
||||||
|
|
||||||
if (!hide) {
|
if (!hide) {
|
||||||
@@ -960,7 +962,8 @@ function hideOrShowFeedsCategory(doc, node, hide, cat_node) {
|
|||||||
}
|
}
|
||||||
if (hide) {
|
if (hide) {
|
||||||
//cat_node.style.display = "none";
|
//cat_node.style.display = "none";
|
||||||
Effect.Fade(cat_node, {duration : 0.3});
|
Effect.Fade(cat_node, {duration : 0.3,
|
||||||
|
queue: { position: 'end', scope: 'CFADE-' + i, limit: 1 }});
|
||||||
} else {
|
} else {
|
||||||
cat_node.style.display = "list-item";
|
cat_node.style.display = "list-item";
|
||||||
}
|
}
|
||||||
|
|||||||
Reference in New Issue
Block a user