From 947c61863e96225bf2bb8b45c141eed776201874 Mon Sep 17 00:00:00 2001 From: Andrew Dolgov Date: Thu, 17 May 2007 17:51:13 +0100 Subject: [PATCH] hide unread feeds works in tag browsing mode --- functions.js | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/functions.js b/functions.js index b99a53c9..7b7253d9 100644 --- a/functions.js +++ b/functions.js @@ -948,7 +948,8 @@ function hideOrShowFeedsCategory(doc, node, hide, cat_node) { if (node.childNodes[i].style != undefined) { - var has_unread = (node.childNodes[i].className != "feed"); + var has_unread = (node.childNodes[i].className != "feed" && + node.childNodes[i].className != "tag"); // debug(node.childNodes[i].id + " --> " + has_unread); -- 2.39.2