summaryrefslogtreecommitdiff
path: root/functions.js
diff options
context:
space:
mode:
authorAndrew Dolgov <[email protected]>2005-09-11 04:02:23 +0100
committerAndrew Dolgov <[email protected]>2005-09-11 04:02:23 +0100
commit4ce1985967547f715c6448b4e72e9e62826aab7f (patch)
tree30ed78201637fbe6f4417789eca38091f1e5b20d /functions.js
parent7ba176d2bf791e60d3389ca23f18ed7a608c6b40 (diff)
search toolbar ui change
Diffstat (limited to 'functions.js')
-rw-r--r--functions.js3
1 files changed, 2 insertions, 1 deletions
diff --git a/functions.js b/functions.js
index 72d35dbbd..cc8a5fbdf 100644
--- a/functions.js
+++ b/functions.js
@@ -128,7 +128,8 @@ function cleanSelectedList(element) {
var content = document.getElementById(element);
for (i = 0; i < content.childNodes.length; i++) {
- content.childNodes[i].className = content.childNodes[i].className.replace("Selected", "");
+ content.childNodes[i].className =
+ content.childNodes[i].className.replace("Selected", "");
}
}