summaryrefslogtreecommitdiff
path: root/functions.js
diff options
context:
space:
mode:
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", "");
}
}
- }
-
+ }
}
}