André Menrath
4140d36a1d
Some checks failed
PHP Code Checker / PHP Code Checker (pull_request) Successful in 52s
PHPUnit / PHPUnit – PHP 7.4 (pull_request) Failing after 1m8s
PHPUnit / PHPUnit – PHP 8.0 (pull_request) Failing after 1m4s
PHPUnit / PHPUnit – PHP 8.1 (pull_request) Failing after 1m8s
PHPUnit / PHPUnit – PHP 8.2 (pull_request) Failing after 1m11s
PHPUnit / PHPUnit – PHP 8.3 (pull_request) Failing after 1m5s
PHPUnit / PHPUnit – PHP 8.4 (pull_request) Failing after 1m3s
34 lines
1.3 KiB
JavaScript
34 lines
1.3 KiB
JavaScript
jQuery( function( $ ) {
|
|
// Accordion handling in various areas.
|
|
$( '.event-bridge-for-activitypub-settings-accordion' ).on( 'click', '.event-bridge-for-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 );
|
|
}
|
|
} );
|
|
|
|
// Function to toggle visibility of custom details based on selected radio button.
|
|
function toggleCustomDetailsForSummary() {
|
|
if ($("#event_bridge_activitypub_summary_type_custom").is(':checked')) {
|
|
$("#event_bridge_activitypub_summary_type_custom-details").show();
|
|
} else {
|
|
$("#event_bridge_activitypub_summary_type_custom-details").hide();
|
|
}
|
|
}
|
|
|
|
// Run the toggle function on page load.
|
|
$(document).ready(function() {
|
|
window.console.log("test");
|
|
toggleCustomDetailsForSummary(); // Set the correct state on load.
|
|
|
|
// Listen for changes on the radio buttons
|
|
$("input[name=event_bridge_activitypub_summary_type]").change(function() {
|
|
toggleCustomDetailsForSummary(); // Update visibility on change.
|
|
});
|
|
});
|
|
} );
|