summaryrefslogtreecommitdiff
path: root/js/functions.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/functions.js
parente2e095233f37272f8d9e85d6e1c61d7752e44f64 (diff)
combine user edit & user details
Diffstat (limited to 'js/functions.js')
-rw-r--r--js/functions.js21
1 files changed, 0 insertions, 21 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];
}