mirror of
https://github.com/EGroupware/egroupware.git
synced 2025-01-18 11:58:24 +01:00
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:
parent
b1f0448b6d
commit
c0877bdaef
@ -871,7 +871,7 @@
|
|||||||
style: cfg.style
|
style: cfg.style
|
||||||
}).width(w);
|
}).width(w);
|
||||||
ms.container.focus($.proxy(handlers._onFocus, this));
|
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.keydown($.proxy(handlers._onKeyDown, this));
|
||||||
ms.container.keyup($.proxy(handlers._onKeyUp, this));
|
ms.container.keyup($.proxy(handlers._onKeyUp, this));
|
||||||
|
|
||||||
@ -886,7 +886,7 @@
|
|||||||
}, cfg.inputCfg)).width(w - (cfg.hideTrigger ? 16 : 42));
|
}, cfg.inputCfg)).width(w - (cfg.hideTrigger ? 16 : 42));
|
||||||
|
|
||||||
ms.input.focus($.proxy(handlers._onInputFocus, this));
|
ms.input.focus($.proxy(handlers._onInputFocus, this));
|
||||||
|
|
||||||
ms.input.click($.proxy(handlers._onInputClick, this));
|
ms.input.click($.proxy(handlers._onInputClick, this));
|
||||||
|
|
||||||
// holds the trigger on the right side
|
// holds the trigger on the right side
|
||||||
|
Loading…
Reference in New Issue
Block a user