mirror of
https://github.com/WordPress/WordPress.git
synced 2025-01-03 15:08:10 +01:00
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. Built from https://develop.svn.wordpress.org/trunk@49911 git-svn-id: http://core.svn.wordpress.org/trunk@49610 1a063a9b-81f0-0310-95a4-ce76da25c4cd
This commit is contained in:
parent
fa83e92c76
commit
0f0b303d5a
@ -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 ( $ ) {
|
||||
// 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 ) {
|
||||
|
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
@ -13,7 +13,7 @@
|
||||
*
|
||||
* @global string $wp_version
|
||||
*/
|
||||
$wp_version = '5.7-alpha-49910';
|
||||
$wp_version = '5.7-alpha-49911';
|
||||
|
||||
/**
|
||||
* Holds the WordPress DB revision, increments when changes are made to the WordPress DB schema.
|
||||
|
Loading…
Reference in New Issue
Block a user