mirror of
https://github.com/WordPress/WordPress.git
synced 2024-11-03 01:09:39 +01:00
88f17f77c4
fixes #23449. props lessbloat, aaroncampbell git-svn-id: http://core.svn.wordpress.org/trunk@23417 1a063a9b-81f0-0310-95a4-ce76da25c4cd
51 lines
1.5 KiB
JavaScript
51 lines
1.5 KiB
JavaScript
jQuery(document).ready( function($) {
|
|
// Expand/Collapse
|
|
$('.accordion-section-title').on('click keydown', function( event ) {
|
|
|
|
if ( event.type === 'keydown' && 13 !== event.which ) // enter
|
|
return;
|
|
|
|
var clicked = $( this ).closest( '.accordion-section' );
|
|
|
|
if ( clicked.hasClass('cannot-expand') )
|
|
return;
|
|
|
|
clicked.closest( '.accordion-container' ).find( '.accordion-section' ).not( clicked ).removeClass( 'open' );
|
|
clicked.toggleClass( 'open' );
|
|
event.preventDefault();
|
|
});
|
|
});
|
|
jQuery(document).ready( function($) {
|
|
// Expand/Collapse
|
|
$('.accordion-section-title').on('click keydown', function( event ) {
|
|
|
|
if ( event.type === 'keydown' && 13 !== event.which ) // enter
|
|
return;
|
|
|
|
var clicked = $( this ).closest( '.accordion-section' );
|
|
|
|
if ( clicked.hasClass('cannot-expand') )
|
|
return;
|
|
|
|
clicked.closest( '.accordion-container' ).find( '.accordion-section' ).not( clicked ).removeClass( 'open' );
|
|
clicked.toggleClass( 'open' );
|
|
event.preventDefault();
|
|
});
|
|
});
|
|
jQuery(document).ready( function($) {
|
|
// Expand/Collapse
|
|
$('.accordion-section-title').on('click keydown', function( event ) {
|
|
|
|
if ( event.type === 'keydown' && 13 !== event.which ) // enter
|
|
return;
|
|
|
|
var clicked = $( this ).closest( '.accordion-section' );
|
|
|
|
if ( clicked.hasClass('cannot-expand') )
|
|
return;
|
|
|
|
clicked.closest( '.accordion-container' ).find( '.accordion-section' ).not( clicked ).removeClass( 'open' );
|
|
clicked.toggleClass( 'open' );
|
|
event.preventDefault();
|
|
});
|
|
}); |