diff options
author | Gislene Pereira <gislene01@gmail.com> | 2015-10-25 16:20:00 -0300 |
---|---|---|
committer | Gislene Pereira <gislene01@gmail.com> | 2015-10-25 16:21:38 -0300 |
commit | 800f211937e4e09a02779c20c6c79ce6edd833f1 (patch) | |
tree | 6c3ef0c40cb20ac9c28f10454c1a2c41ed3bf0c4 /web-ui/app/js/mail_view/ui | |
parent | 51bb55adc9830922c5ed86ff22dac02a8d3c877e (diff) |
[#414] - Setting the focus to Recipients To Box and fixing tab index.
Diffstat (limited to 'web-ui/app/js/mail_view/ui')
-rw-r--r-- | web-ui/app/js/mail_view/ui/compose_box.js | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/web-ui/app/js/mail_view/ui/compose_box.js b/web-ui/app/js/mail_view/ui/compose_box.js index 28f6dc83..92588310 100644 --- a/web-ui/app/js/mail_view/ui/compose_box.js +++ b/web-ui/app/js/mail_view/ui/compose_box.js @@ -70,7 +70,7 @@ define( this.after('initialize', function () { this.renderComposeBox(); - this.select('subjectBox').focus(); + this.select('toBox').focus(); this.on(this.select('cancelButton'), 'click', this.showNoMessageSelected); this.on(document, events.mail.deleted, this.mailDeleted); |