diff options
author | Tulio Casagrande <tcasagra@thoughtworks.com> | 2016-06-13 17:46:33 -0300 |
---|---|---|
committer | Tulio Casagrande <tcasagra@thoughtworks.com> | 2016-06-13 17:46:33 -0300 |
commit | cd354c295e088d24a521b6df93b73133602513af (patch) | |
tree | f8b0be9a149cc3344e899abc4b5c4055db5549cb /web-ui/app/js/mail_view | |
parent | c384e5ff9b3bf1527732cf765b50dc436b36c8e1 (diff) |
Change blur to focusout on recipients_input
Fix: #631
Diffstat (limited to 'web-ui/app/js/mail_view')
-rw-r--r-- | web-ui/app/js/mail_view/ui/recipients/recipients_input.js | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/web-ui/app/js/mail_view/ui/recipients/recipients_input.js b/web-ui/app/js/mail_view/ui/recipients/recipients_input.js index 62bc9c4a..8a9c4eaf 100644 --- a/web-ui/app/js/mail_view/ui/recipients/recipients_input.js +++ b/web-ui/app/js/mail_view/ui/recipients/recipients_input.js @@ -166,7 +166,7 @@ define([ self = this; this.init(); this.on('typeahead:selected typeahead:autocompleted', this.recipientSelected); - this.on(this.$node, 'blur', this.tokenizeRecipient); + this.on(this.$node, 'focusout', this.tokenizeRecipient); this.on(this.$node, 'keydown', this.processSpecialKey); this.on(this.$node, 'keyup', this.warnSendButtonOfInputState); |