mirror of
https://github.com/EGroupware/egroupware.git
synced 2024-11-25 17:33:49 +01:00
Fix mail TO field is not getting focused, and initial resize does not work
This commit is contained in:
parent
36f5364a85
commit
d3cd05165d
@ -245,15 +245,16 @@ app.classes.mail = AppJS.extend(
|
||||
});
|
||||
/*Trigger compose_resizeHandler after the CKEditor is fully loaded*/
|
||||
jQuery('#mail-compose').on ('load',function() {
|
||||
window.setTimeout(function(){that.compose_resizeHandler();}, 300);
|
||||
window.setTimeout(function(){
|
||||
that.compose_fieldExpander();
|
||||
}, 300);
|
||||
});
|
||||
|
||||
//Resize compose after window resize to not getting scrollbar
|
||||
jQuery(window).on ('resize',function() {
|
||||
that.compose_resizeHandler();
|
||||
});
|
||||
|
||||
this.compose_fieldExpander();
|
||||
|
||||
//Call drag_n_drop initialization for emails on compose
|
||||
this.init_dndCompose();
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user