2022-12-02 18:23:56 +01:00
|
|
|
jQuery( function( $ ) {
|
|
|
|
// Accordion handling in various areas.
|
|
|
|
$( '.activitypub-settings-accordion' ).on( 'click', '.activitypub-settings-accordion-trigger', function() {
|
|
|
|
var isExpanded = ( 'true' === $( this ).attr( 'aria-expanded' ) );
|
|
|
|
|
|
|
|
if ( isExpanded ) {
|
|
|
|
$( this ).attr( 'aria-expanded', 'false' );
|
|
|
|
$( '#' + $( this ).attr( 'aria-controls' ) ).attr( 'hidden', true );
|
|
|
|
} else {
|
|
|
|
$( this ).attr( 'aria-expanded', 'true' );
|
|
|
|
$( '#' + $( this ).attr( 'aria-controls' ) ).attr( 'hidden', false );
|
|
|
|
}
|
|
|
|
} );
|
2023-01-30 01:29:45 +01:00
|
|
|
|
2022-12-06 09:21:18 +01:00
|
|
|
$(document).on( 'wp-plugin-install-success', function( event, response ) {
|
|
|
|
setTimeout( function() {
|
|
|
|
$( '.activate-now' ).removeClass( 'thickbox open-plugin-details-modal' );
|
|
|
|
}, 1200 );
|
2023-01-30 01:29:45 +01:00
|
|
|
} );
|
|
|
|
|
2022-12-02 18:23:56 +01:00
|
|
|
} );
|