Make WordPress Core

Ticket #41158: 41158.patch

File 41158.patch, 1.1 KB (added by greuben, 7 years ago)
  • src/wp-admin/js/widgets/text-widgets.js

    diff --git i/src/wp-admin/js/widgets/text-widgets.js w/src/wp-admin/js/widgets/text-widgets.js
    index dfd2a88fc1..7932606e3d 100644
    i w wp.textWidgets = ( function( $ ) { 
    130130                                        wp.editor.remove( id );
    131131                                }
    132132
    133                                 // Adjust z-index for the customizer.
    134                                 window.tinymce.ui.FloatPanel.zIndex = 500001;
    135 
    136133                                wp.editor.initialize( id, {
    137134                                        tinymce: {
    138135                                                wpautop: true
  • src/wp-includes/class-wp-editor.php

    diff --git i/src/wp-includes/class-wp-editor.php w/src/wp-includes/class-wp-editor.php
    index 86966d6f6b..153b976d90 100644
    i w final class _WP_Editors { 
    864864                window.wp = window.wp || {};
    865865                window.wp.editor = window.wp.editor || {};
    866866                window.wp.editor.getDefaultSettings = function() {
     867                        <?php if ( is_customize_preview() ) : ?>
     868                        // Adjust z-index for the customizer.
     869                        if ( tinymce.ui.FloatPanel.zIndex < 500001 ) {
     870                                tinymce.ui.FloatPanel.zIndex = 500001;
     871                        }
     872                        <?php endif; ?>
    867873                        return {
    868874                                tinymce: <?php echo $settings; ?>,
    869875                                quicktags: {