summaryrefslogtreecommitdiff
path: root/functions.js
diff options
context:
space:
mode:
authorAndrew Dolgov <[email protected]>2007-05-17 17:51:13 +0100
committerAndrew Dolgov <[email protected]>2007-05-17 17:51:13 +0100
commit947c61863e96225bf2bb8b45c141eed776201874 (patch)
tree494f98bcbb7c4b9eba7ffc2d91cd9b27dc927057 /functions.js
parentdcac082b4ba1bf2a48b6ec00df25e1639a826382 (diff)
hide unread feeds works in tag browsing mode
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 b99a53c96..7b7253d9f 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);