From cd354c295e088d24a521b6df93b73133602513af Mon Sep 17 00:00:00 2001 From: Tulio Casagrande Date: Mon, 13 Jun 2016 17:46:33 -0300 Subject: Change blur to focusout on recipients_input Fix: #631 --- web-ui/app/js/mail_view/ui/recipients/recipients_input.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'web-ui/app/js/mail_view/ui/recipients/recipients_input.js') 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); -- cgit v1.2.3