wp_back/wp-content/plugins/antispam-bee/js/scripts.js

21 lines
351 B
JavaScript
Raw Normal View History

2024-05-20 15:37:46 +03:00
jQuery( document ).ready(
function( $ ) {
function ab_flag_spam() {
var $$ = $( '#ab_flag_spam' ),
nextAll = $$.parent( 'li' ).nextAll( '.ab_flag_spam_child' );
nextAll.css(
'display',
( $$.is( ':checked' ) ? 'list-item' : 'none' )
);
}
$( '#ab_flag_spam' ).on(
'change',
ab_flag_spam
);
ab_flag_spam();
}
);