Make WordPress Core

Ticket #27159: 27159.3.diff

File 27159.3.diff, 1.3 KB (added by azaozz, 8 years ago)
  • src/wp-includes/class-wp-editor.php

     
    839839                        'Formats' => _x( 'Formats', 'TinyMCE' ),
    840840
    841841                        'Headings' => _x( 'Headings', 'TinyMCE' ),
     842                        'Heading' => _x( 'Heading', 'TinyMCE' ),
    842843                        'Heading 1' => array( __( 'Heading 1' ), 'access1' ),
    843844                        'Heading 2' => array( __( 'Heading 2' ), 'access2' ),
    844845                        'Heading 3' => array( __( 'Heading 3' ), 'access3' ),
  • src/wp-includes/js/tinymce/plugins/wordpress/plugin.js

     
    578578                                        each( listbox.settings.values, function( item ) {
    579579                                                if ( item.text && labels.hasOwnProperty( item.text ) ) {
    580580                                                        item.shortcut = '(' + labels[ item.text ] + ')';
     581
     582                                                        // Drop the numbers after the labels for headings.
     583                                                        // TinyMCE makes previews for the h1-h6. It uses the same styles that are applied in the editor body.
     584                                                        if ( item.text.indexOf( 'Heading' ) !== -1 ) {
     585                                                                item.text = 'Heading';
     586                                                        }
    581587                                                }
    582588                                        } );
    583589                                }