diff options
author | alecpl <alec@alec.pl> | 2009-04-20 08:24:49 +0000 |
---|---|---|
committer | alecpl <alec@alec.pl> | 2009-04-20 08:24:49 +0000 |
commit | 74a2d7a126bd9b36244541557ed2c8499ac5a777 (patch) | |
tree | 2bf41d6f5c68e33aa1cbd45c513af51932d693a7 /program/js/app.js | |
parent | fa1a15c01e0fa758b93185faa72a9598e6e25ca9 (diff) |
- fix Enter key handler in user login input
Diffstat (limited to 'program/js/app.js')
-rw-r--r-- | program/js/app.js | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/program/js/app.js b/program/js/app.js index 0e0c8bf25..bd14d8a78 100644 --- a/program/js/app.js +++ b/program/js/app.js @@ -348,7 +348,7 @@ function rcube_webmail() case 'login': var input_user = $('#rcmloginuser'); - input_user.bind('keypress', function(e){ return rcmail.login_user_keyup(e); }); + input_user.bind('keyup', function(e){ return rcmail.login_user_keyup(e); }); if (input_user.val() == '') input_user.focus(); |