also fade out empty categories

This commit is contained in:
Andrew Dolgov 2007-08-10 10:55:04 +01:00
parent 35c84fca92
commit 38c142d927
1 changed files with 2 additions and 1 deletions

View File

@ -1035,7 +1035,8 @@ function hideOrShowFeedsCategory(doc, node, hide, cat_node) {
return; return;
} }
if (hide) { if (hide) {
cat_node.style.display = "none"; //cat_node.style.display = "none";
Effect.Fade(cat_node, {duration : 0.3});
} else { } else {
cat_node.style.display = "list-item"; cat_node.style.display = "list-item";
} }