From: Andrew Dolgov Date: Wed, 21 Nov 2007 05:00:08 +0000 (+0100) Subject: hideOrShowFeedsCategory: fix bug when scheduling category hide events (closes #176) X-Git-Tag: 1.2.18~41 X-Git-Url: https://git.wh0rd.org/?a=commitdiff_plain;h=70ee302871326d44103da0bca8e4fcb924b6f9a6;p=tt-rss.git hideOrShowFeedsCategory: fix bug when scheduling category hide events (closes #176) --- diff --git a/functions.js b/functions.js index 74c4e9a4..8eb7cc60 100644 --- a/functions.js +++ b/functions.js @@ -968,7 +968,7 @@ function hideOrShowFeedsCategory(doc, node, hide, cat_node) { if (hide) { //cat_node.style.display = "none"; Effect.Fade(cat_node, {duration : 0.3, - queue: { position: 'end', scope: 'CFADE-' + i, limit: 1 }}); + queue: { position: 'end', scope: 'CFADE-' + node.id, limit: 1 }}); } else { cat_node.style.display = "list-item"; }