From: Andrew Dolgov Date: Thu, 18 Oct 2007 02:11:37 +0000 (+0100) Subject: limit fade effect scope when hiding feeds/categories X-Git-Tag: 1.2.16~13 X-Git-Url: https://git.wh0rd.org/?a=commitdiff_plain;h=f03ce70e74608203fd9e4a335df1c6513bc76d32;p=tt-rss.git limit fade effect scope when hiding feeds/categories --- diff --git a/functions.js b/functions.js index 47374ea4..abbe6232 100644 --- a/functions.js +++ b/functions.js @@ -934,7 +934,9 @@ function hideOrShowFeedsCategory(doc, node, hide, cat_node) { if (hide && !has_unread) { //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) { @@ -960,7 +962,8 @@ function hideOrShowFeedsCategory(doc, node, hide, cat_node) { } if (hide) { //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 { cat_node.style.display = "list-item"; }