Make WordPress Core

Ticket #33228: 33228.patch

File 33228.patch, 1.1 KB (added by afercia, 9 years ago)
  • src/wp-admin/js/customize-controls.js

     
    30413041                        return;
    30423042                }
    30433043
    3044                 var parent, topFocus,
     3044                var parent,
    30453045                        body = $( document.body ),
    30463046                        overlay = body.children( '.wp-full-overlay' ),
    30473047                        title = $( '#customize-info .panel-title.site-title' ),
     
    35553555
    35563556                api.trigger( 'ready' );
    35573557
    3558                 // Make sure left column gets focus
    3559                 topFocus = closeBtn;
    3560                 topFocus.focus();
    3561                 setTimeout(function () {
    3562                         topFocus.focus();
    3563                 }, 200);
    3564 
    35653558        });
    35663559
    35673560})( wp, jQuery );
  • src/wp-includes/js/customize-loader.js

     
    232232                 */
    233233                loaded: function() {
    234234                        Loader.body.removeClass('customize-loading');
     235                        // Make sure the overlay gets focus.
     236                        Loader.iframe.contents().find( '.wp-full-overlay.expanded' ).attr( 'tabindex', 0 ).focus();
    235237                },
    236238
    237239                /**