From: Andrew Dolgov Date: Fri, 10 Aug 2007 09:55:04 +0000 (+0100) Subject: also fade out empty categories X-Git-Tag: 1.2.14~90 X-Git-Url: https://git.wh0rd.org/?a=commitdiff_plain;h=38c142d927d5d95de0508c659b2cc43899cec494;p=tt-rss.git also fade out empty categories --- diff --git a/functions.js b/functions.js index 4585b3ba..11f3cf39 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"; }