mirror of
https://github.com/WordPress/WordPress.git
synced 2025-01-07 00:48:55 +01:00
Revert unintended changes from [59546]
Someone (me) forgot to do an svn revert from the previous patch they were testing. Props TobiasBg. Unprops jorbin. See #62455. Built from https://develop.svn.wordpress.org/branches/6.7@59547 git-svn-id: http://core.svn.wordpress.org/branches/6.7@58933 1a063a9b-81f0-0310-95a4-ce76da25c4cd
This commit is contained in:
parent
77c2292ddc
commit
70c0cdd88c
@ -1530,7 +1530,7 @@
|
|||||||
}
|
}
|
||||||
|
|
||||||
// Expand/Collapse accordion sections on click.
|
// Expand/Collapse accordion sections on click.
|
||||||
section.container.find( '.accordion-section-title button, .customize-section-back, .accordion-section-title[tabindex]' ).on( 'click keydown', function( event ) {
|
section.container.find( '.accordion-section-title button, .customize-section-back' ).on( 'click keydown', function( event ) {
|
||||||
if ( api.utils.isKeydownButNotEnterEvent( event ) ) {
|
if ( api.utils.isKeydownButNotEnterEvent( event ) ) {
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
@ -1605,7 +1605,7 @@
|
|||||||
content = section.contentContainer,
|
content = section.contentContainer,
|
||||||
overlay = section.headContainer.closest( '.wp-full-overlay' ),
|
overlay = section.headContainer.closest( '.wp-full-overlay' ),
|
||||||
backBtn = content.find( '.customize-section-back' ),
|
backBtn = content.find( '.customize-section-back' ),
|
||||||
sectionTitle = section.headContainer.find( '.accordion-section-title button, .accordion-section-title[tabindex]' ).first(),
|
sectionTitle = section.headContainer.find( '.accordion-section-title button' ).first(),
|
||||||
expand, panel;
|
expand, panel;
|
||||||
|
|
||||||
if ( expanded && ! content.hasClass( 'open' ) ) {
|
if ( expanded && ! content.hasClass( 'open' ) ) {
|
||||||
@ -2694,7 +2694,7 @@
|
|||||||
container = section.headContainer.closest( '.wp-full-overlay-sidebar-content' ),
|
container = section.headContainer.closest( '.wp-full-overlay-sidebar-content' ),
|
||||||
content = section.contentContainer,
|
content = section.contentContainer,
|
||||||
backBtn = content.find( '.customize-section-back' ),
|
backBtn = content.find( '.customize-section-back' ),
|
||||||
sectionTitle = section.headContainer.find( '.accordion-section-title button, .accordion-section-title[tabindex]' ).first(),
|
sectionTitle = section.headContainer.find( '.accordion-section-title button' ).first(),
|
||||||
body = $( document.body ),
|
body = $( document.body ),
|
||||||
expand, panel;
|
expand, panel;
|
||||||
|
|
||||||
@ -2833,7 +2833,7 @@
|
|||||||
var meta, panel = this;
|
var meta, panel = this;
|
||||||
|
|
||||||
// Expand/Collapse accordion sections on click.
|
// Expand/Collapse accordion sections on click.
|
||||||
panel.headContainer.find( '.accordion-section-title button, .accordion-section-title[tabindex]' ).on( 'click keydown', function( event ) {
|
panel.headContainer.find( '.accordion-section-title button' ).on( 'click keydown', function( event ) {
|
||||||
if ( api.utils.isKeydownButNotEnterEvent( event ) ) {
|
if ( api.utils.isKeydownButNotEnterEvent( event ) ) {
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
@ -2937,7 +2937,7 @@
|
|||||||
accordionSection = panel.contentContainer,
|
accordionSection = panel.contentContainer,
|
||||||
overlay = accordionSection.closest( '.wp-full-overlay' ),
|
overlay = accordionSection.closest( '.wp-full-overlay' ),
|
||||||
container = accordionSection.closest( '.wp-full-overlay-sidebar-content' ),
|
container = accordionSection.closest( '.wp-full-overlay-sidebar-content' ),
|
||||||
topPanel = panel.headContainer.find( '.accordion-section-title button, .accordion-section-title[tabindex]' ),
|
topPanel = panel.headContainer.find( '.accordion-section-title button' ),
|
||||||
backBtn = accordionSection.find( '.customize-panel-back' ),
|
backBtn = accordionSection.find( '.customize-panel-back' ),
|
||||||
childSections = panel.sections(),
|
childSections = panel.sections(),
|
||||||
skipTransition;
|
skipTransition;
|
||||||
|
2
wp-admin/js/customize-controls.min.js
vendored
2
wp-admin/js/customize-controls.min.js
vendored
File diff suppressed because one or more lines are too long
@ -16,7 +16,7 @@
|
|||||||
*
|
*
|
||||||
* @global string $wp_version
|
* @global string $wp_version
|
||||||
*/
|
*/
|
||||||
$wp_version = '6.7.2-alpha-59546';
|
$wp_version = '6.7.2-alpha-59547';
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* 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
Block a user