summaryrefslogtreecommitdiff
path: root/functions.js
diff options
context:
space:
mode:
authorAndrew Dolgov <[email protected]>2008-01-21 09:30:54 +0100
committerAndrew Dolgov <[email protected]>2008-01-21 09:30:54 +0100
commit22f3e356c8d0f2178c1d401f9bb096d3ea142a8f (patch)
tree3f967bee761cec915c145a7f59434554ee571908 /functions.js
parent7ddd770071d37676401a267f259b782d93e0f561 (diff)
new option: HIDE_READ_SHOWS_SPECIAL (bump schema)
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 3bed4f895..ddfce2477 100644
--- a/functions.js
+++ b/functions.js
@@ -938,7 +938,8 @@ function hideOrShowFeedsCategory(doc, node, hide, cat_node) {
var has_unread = (node.childNodes[i].className != "feed" &&
node.childNodes[i].className != "label" &&
- node.childNodes[i].className != "virt" &&
+ !(!getInitParam("hide_read_shows_special") &&
+ node.childNodes[i].className == "virt") &&
node.childNodes[i].className != "error" &&
node.childNodes[i].className != "tag");