After choosing a file, focus the message field

Allow the user to edit the message and/or hit enter to send the image
without having to click.

// FREEBIE
This commit is contained in:
lilia 2015-10-30 11:02:58 -07:00
parent 6c98fc19b4
commit 287aa49252

View file

@ -80,7 +80,11 @@
'click .openInbox' : 'openInbox',
'click' : 'onClick',
'select .entry': 'messageDetail',
'force-resize': 'forceUpdateMessageFieldSize'
'force-resize': 'forceUpdateMessageFieldSize',
'click .choose-file': 'focusMessageField'
},
focusMessageField: function() {
this.$messageField.focus();
},
fetchMessages: function() {
this.model.fetchMessages();