]> git.wh0rd.org Git - tt-rss.git/commitdiff
also fade out empty categories
authorAndrew Dolgov <fox@bah.spb.su>
Fri, 10 Aug 2007 09:55:04 +0000 (10:55 +0100)
committerAndrew Dolgov <fox@bah.spb.su>
Fri, 10 Aug 2007 09:55:04 +0000 (10:55 +0100)
functions.js

index 4585b3baa30f4d7708a31857d5502aa6bb3cf1c0..11f3cf39dc7915cb93c86495a29519a5ab48d7ce 100644 (file)
@@ -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";
                }