summaryrefslogtreecommitdiff
path: root/functions.js
diff options
context:
space:
mode:
authorAndrew Dolgov <[email protected]>2006-03-21 11:38:41 +0100
committerAndrew Dolgov <[email protected]>2006-03-21 11:38:41 +0100
commitbefc807f838f69f73fd07282ba389784fac499ab (patch)
treeb1b85e8e40f2106a1e722c699903c43ef40a0fb4 /functions.js
parent10031c3b74a3b9698e8ddbfb2026c56760ad8eb3 (diff)
optional DB_PORT, misc js cleanups
Diffstat (limited to 'functions.js')
-rw-r--r--functions.js7
1 files changed, 3 insertions, 4 deletions
diff --git a/functions.js b/functions.js
index 376490e08..4ae578edd 100644
--- a/functions.js
+++ b/functions.js
@@ -164,16 +164,15 @@ function cleanSelectedList(element) {
} else {
for (i = 0; i < content.childNodes.length; i++) {
var child = content.childNodes[i];
-
if (child.id == "feedCatHolder") {
+ parent.debug(child.id);
var fcat = child.lastChild;
for (j = 0; j < fcat.childNodes.length; j++) {
- var feed = fcat.childNodes[j];
+ var feed = fcat.childNodes[j];
feed.className = feed.className.replace("Selected", "");
}
}
- }
-
+ }
}
}