summaryrefslogtreecommitdiff
path: root/js/prefs.js
diff options
context:
space:
mode:
Diffstat (limited to 'js/prefs.js')
-rw-r--r--js/prefs.js11
1 files changed, 0 insertions, 11 deletions
diff --git a/js/prefs.js b/js/prefs.js
index 1154b9f18..0b3f47c0a 100644
--- a/js/prefs.js
+++ b/js/prefs.js
@@ -83,13 +83,8 @@ function addUser() {
function editUser(id, event) {
try {
- if (!event || !event.ctrlKey) {
-
notify_progress("Loading, please wait...");
- selectTableRows('prefUserList', 'none');
- selectTableRowById('UMRR-'+id, 'UMCHK-'+id, true);
-
var query = "?op=pref-users&method=edit&id=" +
param_escape(id);
@@ -100,12 +95,6 @@ function editUser(id, event) {
document.forms['user_edit_form'].login.focus();
} });
- } else if (event.ctrlKey) {
- var cb = $('UMCHK-' + id);
- cb.checked = !cb.checked;
- toggleSelectRow(cb);
- }
-
} catch (e) {
exception_error("editUser", e);
}