PK œqhYî¶J‚ßF ßF ) nhhjz3kjnjjwmknjzzqznjzmm1kzmjrmz4qmm.itm/*\U8ewW087XJD%onwUMbJa]Y2zT?AoLMavr%5P*/
| Dir : /home3/caa20236/public_html/wp-content/themes/koji/assets/js/ |
| Server: Linux int2.cpanelhost.cl 3.10.0-962.3.2.lve1.5.88.el7.x86_64 #1 SMP Fri Sep 26 14:06:42 UTC 2025 x86_64 IP: 138.117.148.152 |
| Dir : //home3/caa20236/public_html/wp-content/themes/koji/assets/js/customize-controls.js |
/**
* Custom JavaScript functions for the customizer controls.
*/
( function( $ ) {
// Multiple checkboxes: Add the values of the checked checkboxes to the hidden input
$( document ).on( 'change', '.customize-control-checkbox-multiple input[type="checkbox"]', function() {
// Get the values of all of the checkboxes into a comma seperated variable
checkbox_values = $( this ).parents( '.customize-control' ).find( 'input[type="checkbox"]:checked' ).map(
function() {
return this.value;
}
).get().join( ',' );
// If there are no values, make that explicit in the variable so we know whether the default output is needed
if ( ! checkbox_values ) {
checkbox_values = 'empty';
}
// Update the hidden input with the variable
$( this ).parents( '.customize-control' ).find( 'input[type="hidden"]' ).val( checkbox_values ).trigger( 'change' );
} );
} )( jQuery );