summaryrefslogtreecommitdiff
path: root/functions.js
diff options
context:
space:
mode:
authorAndrew Dolgov <[email protected]>2007-11-21 06:00:08 +0100
committerAndrew Dolgov <[email protected]>2007-11-21 06:00:08 +0100
commit70ee302871326d44103da0bca8e4fcb924b6f9a6 (patch)
treed04f4713a8085007213b6c3c800f9ff6ab9f675d /functions.js
parent2c2b019b1b182a57f7f8e6029ca36d97e18d0740 (diff)
hideOrShowFeedsCategory: fix bug when scheduling category hide events (closes #176)
Diffstat (limited to 'functions.js')
-rw-r--r--functions.js2
1 files changed, 1 insertions, 1 deletions
diff --git a/functions.js b/functions.js
index 74c4e9a45..8eb7cc60f 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";
}