Customizer: Fix selector for container which includes the controls. Broken since [30102].
see #31794, #31014. Built from https://develop.svn.wordpress.org/trunk@31916 git-svn-id: http://core.svn.wordpress.org/trunk@31895 1a063a9b-81f0-0310-95a4-ce76da25c4cd
This commit is contained in:
parent
2c036f589e
commit
80972b7ecd
|
@ -688,7 +688,7 @@
|
||||||
panel = this,
|
panel = this,
|
||||||
section = panel.container.closest( '.accordion-section' ),
|
section = panel.container.closest( '.accordion-section' ),
|
||||||
overlay = section.closest( '.wp-full-overlay' ),
|
overlay = section.closest( '.wp-full-overlay' ),
|
||||||
container = section.closest( '.accordion-container' ),
|
container = section.closest( '.wp-full-overlay-sidebar-content' ),
|
||||||
siblings = container.find( '.open' ),
|
siblings = container.find( '.open' ),
|
||||||
topPanel = overlay.find( '#customize-theme-controls > ul > .accordion-section > .accordion-section-title' ).add( '#customize-info > .accordion-section-title' ),
|
topPanel = overlay.find( '#customize-theme-controls > ul > .accordion-section > .accordion-section-title' ).add( '#customize-info > .accordion-section-title' ),
|
||||||
backBtn = overlay.find( '.themes-panel-back' ),
|
backBtn = overlay.find( '.themes-panel-back' ),
|
||||||
|
@ -1014,7 +1014,7 @@
|
||||||
panel = this,
|
panel = this,
|
||||||
section = panel.container.closest( '.accordion-section' ),
|
section = panel.container.closest( '.accordion-section' ),
|
||||||
overlay = section.closest( '.wp-full-overlay' ),
|
overlay = section.closest( '.wp-full-overlay' ),
|
||||||
container = section.closest( '.accordion-container' ),
|
container = section.closest( '.wp-full-overlay-sidebar-content' ),
|
||||||
siblings = container.find( '.open' ),
|
siblings = container.find( '.open' ),
|
||||||
topPanel = overlay.find( '#customize-theme-controls > ul > .accordion-section > .accordion-section-title' ).add( '#customize-info > .accordion-section-title' ),
|
topPanel = overlay.find( '#customize-theme-controls > ul > .accordion-section > .accordion-section-title' ).add( '#customize-info > .accordion-section-title' ),
|
||||||
backBtn = overlay.find( '.control-panel-back' ),
|
backBtn = overlay.find( '.control-panel-back' ),
|
||||||
|
|
File diff suppressed because one or more lines are too long
|
@ -4,7 +4,7 @@
|
||||||
*
|
*
|
||||||
* @global string $wp_version
|
* @global string $wp_version
|
||||||
*/
|
*/
|
||||||
$wp_version = '4.2-beta3-31915';
|
$wp_version = '4.2-beta3-31916';
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Holds the WordPress DB revision, increments when changes are made to the WordPress DB schema.
|
* Holds the WordPress DB revision, increments when changes are made to the WordPress DB schema.
|
||||||
|
|
Loading…
Reference in New Issue