Changeset 33940
- Timestamp:
- 09/07/2015 06:04:39 AM (10 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/4.3/src/wp-admin/js/customize-controls.js
r33610 r33940 69 69 focus = function () { 70 70 var focusContainer; 71 if ( construct.expanded && construct.expanded() ) { 72 focusContainer = construct.container.find( 'ul:first' ); 71 if ( construct.extended( api.Panel ) && construct.expanded && construct.expanded() ) { 72 focusContainer = construct.container.find( 'ul.control-panel-content' ); 73 } else if ( construct.extended( api.Section ) && construct.expanded && construct.expanded() ) { 74 focusContainer = construct.container.find( 'ul.accordion-section-content' ); 73 75 } else { 74 76 focusContainer = construct.container;
Note: See TracChangeset
for help on using the changeset viewer.