summaryrefslogtreecommitdiff
path: root/web-ui/app/js
diff options
context:
space:
mode:
authorTulio Casagrande <tcasagra@thoughtworks.com>2016-06-13 17:46:33 -0300
committerTulio Casagrande <tcasagra@thoughtworks.com>2016-06-13 17:46:33 -0300
commitcd354c295e088d24a521b6df93b73133602513af (patch)
treef8b0be9a149cc3344e899abc4b5c4055db5549cb /web-ui/app/js
parentc384e5ff9b3bf1527732cf765b50dc436b36c8e1 (diff)
Change blur to focusout on recipients_input
Fix: #631
Diffstat (limited to 'web-ui/app/js')
-rw-r--r--web-ui/app/js/mail_view/ui/recipients/recipients_input.js2
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);