Make WordPress Core

Ticket #27963: 27963.patch

File 27963.patch, 576 bytes (added by azaozz, 12 years ago)
  • src/wp-includes/js/tinymce/plugins/wordpress/plugin.js

     
    6363
    6464        // Hide the toolbars after loading
    6565        editor.on( 'PostRender', function() {
    66                 if ( getUserSetting('hidetb', '0') === '0' ) {
     66                if ( editor.getParam( 'wordpress_adv_hidden', true ) && getUserSetting( 'hidetb', '0' ) === '0' ) {
    6767                        toggleToolbars( 'hide' );
    6868                }
    6969        });