From: Andrew Dolgov Date: Thu, 17 May 2007 16:51:13 +0000 (+0100) Subject: hide unread feeds works in tag browsing mode X-Git-Tag: schema_freeze_for_1.2.11~7 X-Git-Url: https://git.wh0rd.org/?a=commitdiff_plain;h=947c61863e96225bf2bb8b45c141eed776201874;p=tt-rss.git hide unread feeds works in tag browsing mode --- 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);