summaryrefslogtreecommitdiff
path: root/functions.js
diff options
context:
space:
mode:
authorAndrew Dolgov <[email protected]>2006-08-26 16:26:17 +0100
committerAndrew Dolgov <[email protected]>2006-08-26 16:26:17 +0100
commit0ac2faea3fb7b17c9946af31f2e7cd750f113614 (patch)
treed9f3a5b78ad90a36d5624927b062dda5645ea32c /functions.js
parent7553dd8b61ae62ceb3f9a8e1d1973d91789c7c43 (diff)
fix hideOrShowFeeds issue in tag mode
Diffstat (limited to 'functions.js')
-rw-r--r--functions.js6
1 files changed, 5 insertions, 1 deletions
diff --git a/functions.js b/functions.js
index c67d5dfa5..3e0b09146 100644
--- a/functions.js
+++ b/functions.js
@@ -822,7 +822,11 @@ function hideOrShowFeedsCategory(doc, node, hide, cat_node) {
cat_node.style.display = "list-item";
}
} else {
- cat_node.style.display = "list-item";
+ try {
+ cat_node.style.display = "list-item";
+ } catch (e) {
+ debug(e);
+ }
}
// debug("unread for category: " + cat_unread);