summaryrefslogtreecommitdiff
path: root/functions.js
diff options
context:
space:
mode:
authorAndrew Dolgov <[email protected]>2007-08-10 10:55:04 +0100
committerAndrew Dolgov <[email protected]>2007-08-10 10:55:04 +0100
commit38c142d927d5d95de0508c659b2cc43899cec494 (patch)
tree86314c95ae21b900a4e011ec7e4c6ed8b3c9e4b8 /functions.js
parent35c84fca92a50810410dc33ed6efbd2d8cfce43a (diff)
also fade out empty categories
Diffstat (limited to 'functions.js')
-rw-r--r--functions.js3
1 files changed, 2 insertions, 1 deletions
diff --git a/functions.js b/functions.js
index 4585b3baa..11f3cf39d 100644
--- a/functions.js
+++ b/functions.js
@@ -1035,7 +1035,8 @@ function hideOrShowFeedsCategory(doc, node, hide, cat_node) {
return;
}
if (hide) {
- cat_node.style.display = "none";
+ //cat_node.style.display = "none";
+ Effect.Fade(cat_node, {duration : 0.3});
} else {
cat_node.style.display = "list-item";
}