forked from extern/egroupware
Make sure ckeditor is loaded before calling resizehandler in mail compose
This commit is contained in:
parent
951768885a
commit
545531ba99
@ -200,7 +200,9 @@ app.classes.mail = AppJS.extend(
|
||||
}
|
||||
});
|
||||
/*Trigger compose_resizeHandler after the CKEditor is fully loaded*/
|
||||
jQuery('#mail-compose').load ('load', function() {that.compose_resizeHandler();});
|
||||
jQuery('#mail-compose').on ('load',function() {
|
||||
window.setTimeout(function(){that.compose_resizeHandler()}, 100);
|
||||
});
|
||||
|
||||
this.compose_fieldExpander();
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user