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 | |
parent | 60753b05faa87b6ee6a7b0f22b85cb664478269f (diff) |
Submit Addressbook advanced search form with Enter key (#1488568)
-rw-r--r-- | CHANGELOG | 1 | ||||
-rw-r--r-- | program/js/app.js | 5 |
2 files changed, 6 insertions, 0 deletions
@@ -1,6 +1,7 @@ CHANGELOG Roundcube Webmail =========================== +- Submit Addressbook advanced search form with Enter key (#1488568) - Improved database schema upgrade procedure, added updatedb.sh script - Feature to export only selected contacts from addressbook (by Phil Weir) - Force autocommit mode in mysql database driver (#1488902) 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() |