hide unread feeds works in tag browsing mode
This commit is contained in:
parent
dcac082b4b
commit
947c61863e
1 changed files with 2 additions and 1 deletions
|
@ -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);
|
||||
|
||||
|
|
Loading…
Reference in a new issue