Changeset 40990
- Timestamp:
- 07/01/2017 08:32:12 PM (7 years ago)
- Location:
- trunk/src
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/wp-admin/js/widgets/text-widgets.js
r40941 r40990 121 121 wp.editor.remove( id ); 122 122 } 123 124 // Adjust z-index for the customizer. 125 window.tinymce.ui.FloatPanel.zIndex = 500001; 123 126 124 127 wp.editor.initialize( id, { -
trunk/src/wp-includes/js/tinymce/plugins/wordpress/plugin.js
r40587 r40990 2 2 ( function( tinymce ) { 3 3 // Set the minimum value for the modals z-index higher than #wpadminbar (100000) 4 tinymce.ui.FloatPanel.zIndex = 100100; 4 if ( tinymce.ui.FloatPanel.zIndex < 100100 ) { 5 tinymce.ui.FloatPanel.zIndex = 100100; 6 } 5 7 6 8 tinymce.PluginManager.add( 'wordpress', function( editor ) {
Note: See TracChangeset
for help on using the changeset viewer.