diff --git i/src/wp-includes/class-wp-customize-nav-menus.php w/src/wp-includes/class-wp-customize-nav-menus.php
index e263e3f391..d1985b9ad8 100644
i
|
w
|
final class WP_Customize_Nav_Menus { |
1132 | 1132 | add_action( 'wp_enqueue_scripts', array( $this, 'customize_preview_enqueue_deps' ) ); |
1133 | 1133 | add_filter( 'wp_nav_menu_args', array( $this, 'filter_wp_nav_menu_args' ), 1000 ); |
1134 | 1134 | add_filter( 'wp_nav_menu', array( $this, 'filter_wp_nav_menu' ), 10, 2 ); |
1135 | | add_filter( 'wp_footer', array( $this, 'export_preview_data' ), 1 ); |
| 1135 | add_action( 'wp_footer', array( $this, 'export_preview_data' ), 1 ); |
1136 | 1136 | add_filter( 'customize_render_partials_response', array( $this, 'export_partial_rendered_nav_menu_instances' ) ); |
1137 | 1137 | } |
1138 | 1138 | |
diff --git i/src/wp-includes/js/tinymce/plugins/wordpress/plugin.js w/src/wp-includes/js/tinymce/plugins/wordpress/plugin.js
index 08e3cf78c9..b32cf2c893 100644
i
|
w
|
|
1 | 1 | /* global getUserSetting, setUserSetting */ |
2 | 2 | ( function( tinymce ) { |
3 | | // Set the minimum value for the modals z-index higher than #wpadminbar (100000) |
4 | | tinymce.ui.FloatPanel.zIndex = 100100; |
| 3 | // Set the minimum value for the modals z-index higher than .wp-full-overlay (500000) |
| 4 | if ( tinymce.ui.FloatPanel.zIndex < 500001 ) { |
| 5 | tinymce.ui.FloatPanel.zIndex = 500001; |
| 6 | } |
5 | 7 | |
6 | 8 | tinymce.PluginManager.add( 'wordpress', function( editor ) { |
7 | 9 | var wpAdvButton, style, |