HEX
Server: Apache
System: Linux webd001.cluster127.gra.hosting.ovh.net 6.18.42-ovh-vps-grsec-zfs+ #1 SMP PREEMPT_DYNAMIC Wed Aug 5 15:59:48 CEST 2026 x86_64
User: mciraet (192513)
PHP: 8.2.31
Disabled: _dyuweyrj4,_dyuweyrj4r,dl
Upload Files
File: /home/mciraet/www/wp-content/themes/movedo/includes/framework/inc/fields/checkbox/redux-checkbox.js
/**
 * Redux Checkbox
 * Dependencies        : jquery
 * Feature added by    : Dovy Paukstys
 * Date                : 17 June 2014
 */

/*global redux_change, redux*/

(function( $ ) {
	'use strict';

	redux.field_objects          = redux.field_objects || {};
	redux.field_objects.checkbox = redux.field_objects.checkbox || {};

	redux.field_objects.checkbox.init = function( selector ) {
		selector = $.redux.getSelector( selector, 'checkbox' );

		$( selector ).each(
			function() {
				var el     = $( this );
				var parent = el;

				if ( ! el.hasClass( 'redux-field-container' ) ) {
					parent = el.parents( '.redux-field-container:first' );
				}

				if ( parent.is( ':hidden' ) ) {
					return;
				}

				if ( parent.hasClass( 'redux-field-init' ) ) {
					parent.removeClass( 'redux-field-init' );
				} else {
					return;
				}

				el.find( '.checkbox' ).on(
					'click',
					function() {
						var val = 0;

						if ( $( this ).is( ':checked' ) ) {
							val = $( this ).parent().find( '.checkbox-check' ).attr( 'data-val' );
						}

						$( this ).parent().find( '.checkbox-check' ).val( val );

						redux_change( $( this ) );
					}
				);
			}
		);
	};
})( jQuery );