hide unread feeds works in tag browsing mode
This commit is contained in:
parent
dcac082b4b
commit
947c61863e
|
@ -948,7 +948,8 @@ function hideOrShowFeedsCategory(doc, node, hide, cat_node) {
|
||||||
|
|
||||||
if (node.childNodes[i].style != undefined) {
|
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);
|
// debug(node.childNodes[i].id + " --> " + has_unread);
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue