1
0
mirror of https://git.tt-rss.org/git/tt-rss.git synced 2025-12-14 05:25:56 +00:00

optional DB_PORT, misc js cleanups

This commit is contained in:
Andrew Dolgov
2006-03-21 11:38:41 +01:00
parent 10031c3b74
commit befc807f83
6 changed files with 19 additions and 18 deletions

View File

@@ -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", "");
}
}
}
}
}
}