summaryrefslogtreecommitdiff
path: root/prefs.js
diff options
context:
space:
mode:
authorAndrew Dolgov <[email protected]>2005-11-27 15:56:10 +0100
committerAndrew Dolgov <[email protected]>2005-11-27 15:56:10 +0100
commit1572afe508162a4e475669e3bb651ee659568c20 (patch)
tree808c0bb9fc55992676ec3de5a1bc0fb4130ab500 /prefs.js
parent21cfcdf29b20d43c0577fb2168ba7af7d790a123 (diff)
headlines subtoolbar, misc api changes
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)) {