%PDF- %PDF-
| Direktori : /home2/vacivi36/www2]/old/wp-content/plugins/templatesnext-toolkit/inc/meta-box/js/ |
| Current File : //home2/vacivi36/www2]/old/wp-content/plugins/templatesnext-toolkit/inc/meta-box/js/image-select.js |
jQuery( function ( $ )
{
'use strict';
$( 'body' ).on( 'change', '.rwmb-image-select input', function ()
{
var $this = $( this ),
type = $this.attr( 'type' ),
selected = $this.is( ':checked' ),
$parent = $this.parent(),
$others = $parent.siblings();
if ( selected )
{
$parent.addClass( 'rwmb-active' );
if ( type === 'radio' )
{
$others.removeClass( 'rwmb-active' );
}
}
else
{
$parent.removeClass( 'rwmb-active' );
}
} );
$( '.rwmb-image-select input' ).trigger( 'change' );
} );