summaryrefslogtreecommitdiff
path: root/functions.js
diff options
context:
space:
mode:
authorAndrew Dolgov <[email protected]>2006-03-04 15:12:11 +0100
committerAndrew Dolgov <[email protected]>2006-03-04 15:12:11 +0100
commitd0bb308e16e930ff66249da031d25ffcf7710773 (patch)
tree536aca9bb599d18e62f731ec1447412ac35fddaf /functions.js
parent019ce9f37f72bd3fbc941b92f0c98d542509466e (diff)
tag display now works
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 14939cdc6..ac9b55bf3 100644
--- a/functions.js
+++ b/functions.js
@@ -155,7 +155,11 @@ function cleanSelectedList(element) {
if (!document.getElementById("feedCatHolder")) {
for (i = 0; i < content.childNodes.length; i++) {
var child = content.childNodes[i];
- child.className = child.className.replace("Selected", "");
+ try {
+ child.className = child.className.replace("Selected", "");
+ } catch (e) {
+ //
+ }
}
} else {
for (i = 0; i < content.childNodes.length; i++) {