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