summaryrefslogtreecommitdiff
path: root/functions.js
diff options
context:
space:
mode:
authorAndrew Dolgov <[email protected]>2006-02-24 11:22:59 +0100
committerAndrew Dolgov <[email protected]>2006-02-24 11:22:59 +0100
commit937881b5f2f1c5264f1767ccca7b8d6ba126700f (patch)
tree13f658ab507dd09905745e89e364d6b17782f0aa /functions.js
parent140ff9db5aea4169ee6af41542d6337b5bb03ec6 (diff)
fix feedlist layout bug (take two) - remove unneeded CRs
Diffstat (limited to 'functions.js')
-rw-r--r--functions.js2
1 files changed, 1 insertions, 1 deletions
diff --git a/functions.js b/functions.js
index 6330c2861..8d59bd321 100644
--- a/functions.js
+++ b/functions.js
@@ -165,7 +165,7 @@ function cleanSelectedList(element) {
if (child.id == "feedCatHolder") {
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", "");
}
}