Changeset 44639
- Timestamp:
- 01/17/2019 11:54:23 AM (6 years ago)
- Location:
- trunk/src
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/js/media/views/modal.js
r43309 r44639 138 138 this.clickedOpenerEl.focus(); 139 139 } else { 140 $( '#wpbody-content' ).focus(); 140 $( '#wpbody-content' ) 141 .attr( 'tabindex', '-1' ) 142 .focus(); 141 143 } 142 144 -
trunk/src/wp-admin/admin-header.php
r44133 r44639 249 249 ?> 250 250 251 <div id="wpbody-content" aria-label="<?php esc_attr_e( 'Main content' ); ?>" tabindex="0">251 <div id="wpbody-content"> 252 252 <?php 253 253 -
trunk/src/wp-includes/class-wp-admin-bar.php
r42343 r44639 439 439 <a class="screen-reader-shortcut" href="#wp-toolbar" tabindex="1"><?php _e( 'Skip to toolbar' ); ?></a> 440 440 <?php } ?> 441 <div class="quicklinks" id="wp-toolbar" role="navigation" aria-label="<?php esc_attr_e( 'Toolbar' ); ?>" tabindex="0">441 <div class="quicklinks" id="wp-toolbar" role="navigation" aria-label="<?php esc_attr_e( 'Toolbar' ); ?>"> 442 442 <?php 443 443 foreach ( $root->children as $group ) {
Note: See TracChangeset
for help on using the changeset viewer.