summaryrefslogtreecommitdiff
path: root/js
diff options
context:
space:
mode:
authorAndrew Dolgov <[email protected]>2015-08-12 20:19:38 +0300
committerAndrew Dolgov <[email protected]>2015-08-12 20:19:38 +0300
commitbf9cc9ad9526471551b057e6390f6c040599e531 (patch)
treeffd1b4206b034a20da6ec420fa3f1514e81ad11f /js
parente2e095233f37272f8d9e85d6e1c61d7752e44f64 (diff)
combine user edit & user details
Diffstat (limited to 'js')
-rw-r--r--js/functions.js21
-rw-r--r--js/prefs.js1
2 files changed, 0 insertions, 22 deletions
diff --git a/js/functions.js b/js/functions.js
index a0f954e07..843edaec6 100644
--- a/js/functions.js
+++ b/js/functions.js
@@ -502,27 +502,6 @@ function infobox_callback2(transport, title) {
}
}
-function filterCR(e, f)
-{
- var key;
-
- if(window.event)
- key = window.event.keyCode; //IE
- else
- key = e.which; //firefox
-
- if (key == 13) {
- if (typeof f != 'undefined') {
- f();
- return false;
- } else {
- return false;
- }
- } else {
- return true;
- }
-}
-
function getInitParam(key) {
return init_params[key];
}
diff --git a/js/prefs.js b/js/prefs.js
index 159b9ecbc..66288764a 100644
--- a/js/prefs.js
+++ b/js/prefs.js
@@ -109,7 +109,6 @@ function editUser(id, event) {
style: "width: 600px",
execute: function() {
if (this.validate()) {
-
notify_progress("Saving data...", true);
var query = dojo.formToQuery("user_edit_form");