Changeset 46386
- Timestamp:
- 10/04/2019 08:11:20 PM (5 years ago)
- Location:
- trunk/src
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/js/_enqueues/vendor/tinymce/plugins/wordpress/plugin.js
r45620 r46386 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; -
trunk/src/wp-admin/edit-form-blocks.php
r46110 r46386 1 1 <?php 2 2 /** 3 * The Block Editor page.3 * The block editor page. 4 4 * 5 5 * @since 5.0.0 -
trunk/src/wp-includes/class-wp-editor.php
r46326 r46386 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
Note: See TracChangeset
for help on using the changeset viewer.