%PDF- %PDF-
| Direktori : /home/vacivi36/backupsite/public_html/old/wp-content/plugins/meta-box/js/ |
| Current File : /home/vacivi36/backupsite/public_html/old/wp-content/plugins/meta-box/js/input-list.js |
jQuery( function ( $ ) {
function update() {
var $this = $( this ),
$children = $this.closest( 'li' ).children( 'ul' );
if ( $this.is( ':checked' ) ) {
$children.removeClass( 'hidden' );
} else {
$children
.addClass( 'hidden' )
.find( 'input' )
.removeAttr( 'checked' );
}
}
$( '.rwmb-input' )
.on( 'change', '.rwmb-input-list.collapse :checkbox', update )
.on( 'clone', '.rwmb-input-list.collapse :checkbox', update );
$( '.rwmb-input-list.collapse :checkbox' ).each( update );
} );