summaryrefslogtreecommitdiff
path: root/prefs.js
diff options
context:
space:
mode:
Diffstat (limited to 'prefs.js')
-rw-r--r--prefs.js14
1 files changed, 0 insertions, 14 deletions
diff --git a/prefs.js b/prefs.js
index 5c699f237..59af58fd1 100644
--- a/prefs.js
+++ b/prefs.js
@@ -195,20 +195,6 @@ function updateUsersList() {
}
-function toggleSelectRow(sender) {
- var parent_row = sender.parentNode.parentNode;
-
- if (sender.checked) {
- if (!parent_row.className.match("Selected")) {
- parent_row.className = parent_row.className + "Selected";
- }
- } else {
- if (parent_row.className.match("Selected")) {
- parent_row.className = parent_row.className.replace("Selected", "");
- }
- }
-}
-
function addLabel() {
if (!xmlhttp_ready(xmlhttp)) {