Editor: Trigger the tinymce-editor-init custom jQuery event on DOM ready. Otherwise TinyMCE may initialize earlier and handlers attached on DOM ready may not get triggered. Fixes making the editor menu "sticky" and setting/resetting some screen options on the old Edit Post screen.

Fixes 52046, 51995.

git-svn-id: https://develop.svn.wordpress.org/trunk@49911 602fd350-edb4-49c9-b593-d223f7449a82
This commit is contained in:
Andrew Ozz
2020-12-29 13:19:14 +00:00
parent 505e08e2c4
commit ce9d7aa464

View File

@@ -16,6 +16,8 @@ tinymce.PluginManager.add( 'wordpress', function( editor ) {
wpTooltips = false;
if ( $ ) {
// Runs as soon as TinyMCE has started initializing, while plugins are loading.
// Handlers attached after the `tinymce.init()` call may not get triggered for this instance.
$( document ).triggerHandler( 'tinymce-editor-setup', [ editor ] );
}
@@ -540,7 +542,11 @@ tinymce.PluginManager.add( 'wordpress', function( editor ) {
});
if ( $ ) {
$( document ).triggerHandler( 'tinymce-editor-init', [editor] );
// Run on DOM ready. Otherwise TinyMCE may initialize earlier and handlers attached
// on DOM ready of after the `tinymce.init()` call may not get triggered.
$( function() {
$( document ).triggerHandler( 'tinymce-editor-init', [editor] );
});
}
if ( window.tinyMCEPreInit && window.tinyMCEPreInit.dragDropUpload ) {