31858e2511
see #23890 git-svn-id: https://develop.svn.wordpress.org/trunk@23858 602fd350-edb4-49c9-b593-d223f7449a82
17 lines
497 B
JavaScript
17 lines
497 B
JavaScript
jQuery(document).ready( function($) {
|
|
// Expand/Collapse
|
|
$('.accordion-container').on( 'click keydown', '.accordion-section-title', function(e) {
|
|
if ( e.type === 'keydown' && 13 !== e.which ) // "return" key
|
|
return;
|
|
e.preventDefault(); // Keep this AFTER the key filter above
|
|
|
|
var section = $( this ).closest( '.accordion-section' );
|
|
|
|
if ( section.hasClass('cannot-expand') )
|
|
return;
|
|
|
|
section.siblings( '.open' ).removeClass( 'open' );
|
|
section.toggleClass( 'open' );
|
|
});
|
|
});
|