Changeset 41068
- Timestamp:
- 07/18/2017 03:22:34 AM (8 years ago)
- Location:
- branches/4.8
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/4.8
- Property svn:mergeinfo changed
/trunk merged: 40990,40995
- Property svn:mergeinfo changed
-
branches/4.8/src/wp-admin/js/customize-controls.js
r40704 r41068 5508 5508 } ()); 5509 5509 5510 // Make sure TinyMCE dialogs appear above Customizer UI. 5511 $( document ).one( 'wp-before-tinymce-init', function() { 5512 if ( ! window.tinymce.ui.FloatPanel.zIndex || window.tinymce.ui.FloatPanel.zIndex < 500001 ) { 5513 window.tinymce.ui.FloatPanel.zIndex = 500001; 5514 } 5515 } ); 5516 5510 5517 api.trigger( 'ready' ); 5511 5518 }); -
branches/4.8/src/wp-includes/js/tinymce/plugins/wordpress/plugin.js
r40587 r41068 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.