Files
wordpress-preseed/wp-content/plugins/antispam-bee/js/scripts.js
2019-10-24 00:12:05 +02:00

21 lines
339 B
JavaScript

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();
}
);