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:50:30 +0100 |
commit | 55a2e5eca183de3c7b32236e6ef54a0c59960cea (patch) | |
tree | 92c58c664be4375875a7d82602ec55f622763cb1 /program/js/app.js | |
parent | 60753b05faa87b6ee6a7b0f22b85cb664478269f (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 6d48222e6..ce17245e1 100644 --- a/program/js/app.js +++ b/program/js/app.js @@ -4431,6 +4431,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() |