diff options
author | Aleksander Machniak <alec@alec.pl> | 2013-01-23 11:50:30 +0100 |
---|---|---|
committer | Aleksander Machniak <alec@alec.pl> | 2013-01-23 11:51:31 +0100 |
commit | a2181ee6250209c3444f727f48bb3356e4db4e4d (patch) | |
tree | b3ee7af9569d86fef49c6e62aea2ae69f094e331 /program/js/app.js | |
parent | 68fb9e63f06d43e4c07d4a57fd153de2ce8474b0 (diff) |
Submit Addressbook advanced search form with Enter key (#1488568)
Diffstat (limited to 'program/js/app.js')
-rw-r--r-- | program/js/app.js | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/program/js/app.js b/program/js/app.js index 474ece77f..7b3514561 100644 --- a/program/js/app.js +++ b/program/js/app.js @@ -4426,6 +4426,11 @@ function rcube_webmail() } $("input[type='text']:visible").first().focus(); + + // Submit search form on Enter + if (this.env.action == 'search') + $(this.gui_objects.editform).append($('<input type="submit">').hide()) + .submit(function() { $('input.mainaction').click(); return false; }); }; this.group_create = function() |