fix typing of an email-address in compose with direct click on send button (no tab out of taglist) looses just typed email

This commit is contained in:
Ralf Becker 2014-09-09 11:42:16 +00:00
parent b1f0448b6d
commit c0877bdaef

View File

@ -871,7 +871,7 @@
style: cfg.style
}).width(w);
ms.container.focus($.proxy(handlers._onFocus, this));
ms.container.blur($.proxy(handlers._onBlur, this));
ms.container.focusout($.proxy(handlers._onBlur, this));
ms.container.keydown($.proxy(handlers._onKeyDown, this));
ms.container.keyup($.proxy(handlers._onKeyUp, this));
@ -886,7 +886,7 @@
}, cfg.inputCfg)).width(w - (cfg.hideTrigger ? 16 : 42));
ms.input.focus($.proxy(handlers._onInputFocus, this));
ms.input.click($.proxy(handlers._onInputClick, this));
// holds the trigger on the right side