Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/roundcube/roundcubemail.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--CHANGELOG1
-rw-r--r--program/js/app.js22
2 files changed, 1 insertions, 22 deletions
diff --git a/CHANGELOG b/CHANGELOG
index 16c907a7c..29321c51c 100644
--- a/CHANGELOG
+++ b/CHANGELOG
@@ -15,6 +15,7 @@ CHANGELOG Roundcube Webmail
- Fix bug where Ctype extension wasn't required in Installer and INSTALL file (#7049)
- Fix so install-jsdeps.sh removes Bootstrap's sourceMappingURL (#7035)
- Fix so use of Ctrl+A does not scroll the list (#7020)
+- Fix/remove useless keyup event handler on username input in logon form (#6970)
RELEASE 1.4.1
-------------
diff --git a/program/js/app.js b/program/js/app.js
index 0a8e12afa..fc7083e1d 100644
--- a/program/js/app.js
+++ b/program/js/app.js
@@ -624,8 +624,6 @@ function rcube_webmail()
input_user = $('#rcmloginuser'),
input_tz = $('#rcmlogintz');
- input_user.keyup(function(e) { return ref.login_user_keyup(e); });
-
if (input_user.val() == '')
input_user.focus();
else
@@ -4487,26 +4485,6 @@ function rcube_webmail()
/*********************************************************/
- /********* login form methods *********/
- /*********************************************************/
-
- // handler for keyboard events on the _user field
- this.login_user_keyup = function(e)
- {
- var key = rcube_event.get_keycode(e),
- passwd = $('#rcmloginpwd');
-
- // enter
- if (key == 13 && passwd.length && !passwd.val()) {
- passwd.focus();
- return rcube_event.cancel(e);
- }
-
- return true;
- };
-
-
- /*********************************************************/
/********* message compose methods *********/
/*********************************************************/