Ticket #45634: 45634.3.diff
File 45634.3.diff, 2.3 KB (added by , 5 years ago) |
---|
-
src/js/_enqueues/vendor/tinymce/plugins/wordpress/plugin.js
638 638 } 639 639 } ); 640 640 641 // Alt+Shift+Z removes a block in the Block Editor, don't add it to the Classic Block.641 // Alt+Shift+Z removes a block in the block editor, don't add it to the Classic block. 642 642 if ( ! editor.settings.classic_block_editor ) { 643 643 editor.addShortcut( 'access+z', '', 'WP_Adv' ); 644 644 } 645 645 646 // Workaround for not triggering the global help modal in the Block Editor by the Classic Block shortcut.646 // Workaround for not triggering the global help modal in the block editor by the Classic block shortcut. 647 647 editor.on( 'keydown', function( event ) { 648 648 var match; 649 649 -
src/wp-admin/edit-form-blocks.php
1 1 <?php 2 2 /** 3 * The Block Editor page.3 * The block editor page. 4 4 * 5 5 * @since 5.0.0 6 6 * -
src/wp-includes/class-wp-editor.php
1294 1294 'Link options' => __( 'Link options' ), // Tooltip for the 'link options' button in the inline link dialog 1295 1295 'Visual' => _x( 'Visual', 'Name for the Visual editor tab' ), // Editor switch tab label 1296 1296 'Text' => _x( 'Text', 'Name for the Text editor tab (formerly HTML)' ), // Editor switch tab label 1297 'Add Media' => array( __( 'Add Media' ), 'accessM' ), // Tooltip for the 'Add Media' button in the Block Editor Classic block1297 'Add Media' => array( __( 'Add Media' ), 'accessM' ), // Tooltip for the 'Add Media' button in the block editor Classic block 1298 1298 1299 1299 // Shortcuts help modal 1300 1300 'Keyboard Shortcuts' => array( __( 'Keyboard Shortcuts' ), 'accessH' ),