mirror of
git://develop.git.wordpress.org/
synced 2025-04-05 04:33:18 +02:00
Customize: Fix focus()
to collapse child panels and show parent panel.
When a child panel is open, `wp.customize.panel('parent_panel').focus()` (e.g. `'parent_parent'` might be `'nav_menus'`) collapses the child panel(s) to show the parent panel. Follow-up to [30102], [31920], [38648]. Props celloexpressions, costdev, dlh, hareesh-pillai, hellofromTonya, westonruter, wpweaver. Fixes #34436. git-svn-id: https://develop.svn.wordpress.org/trunk@52003 602fd350-edb4-49c9-b593-d223f7449a82
This commit is contained in:
parent
9cfdfd4ecd
commit
e6e51414c9
14
src/js/_enqueues/wp/customize/controls.js
vendored
14
src/js/_enqueues/wp/customize/controls.js
vendored
@ -695,10 +695,22 @@
|
||||
* @param {Function} [params.completeCallback]
|
||||
*/
|
||||
focus = function ( params ) {
|
||||
var construct, completeCallback, focus, focusElement;
|
||||
var construct, completeCallback, focus, focusElement, sections;
|
||||
construct = this;
|
||||
params = params || {};
|
||||
focus = function () {
|
||||
// If a child section is currently expanded, collapse it.
|
||||
if ( construct.extended( api.Panel ) ) {
|
||||
sections = construct.sections();
|
||||
if ( 1 < sections.length ) {
|
||||
sections.forEach( function ( section ) {
|
||||
if ( section.expanded() ) {
|
||||
section.collapse();
|
||||
}
|
||||
} );
|
||||
}
|
||||
}
|
||||
|
||||
var focusContainer;
|
||||
if ( ( construct.extended( api.Panel ) || construct.extended( api.Section ) ) && construct.expanded && construct.expanded() ) {
|
||||
focusContainer = construct.contentContainer;
|
||||
|
Loading…
x
Reference in New Issue
Block a user