b0y-101 Mini Shell


Current Path : E:/wordpress/wp-content/themes/spacious/inc/customizer/core/custom-controls/buttonset/
File Upload :
Current File : E:/wordpress/wp-content/themes/spacious/inc/customizer/core/custom-controls/buttonset/buttonset.js

/**
 * Radio buttonset control JS to handle the toggle of radio buttonsets.
 *
 * File `buttonset.js`.
 *
 * @package Spacious
 */
wp.customize.controlConstructor[ 'spacious-buttonset' ] = wp.customize.Control.extend( {

	ready : function () {

		'use strict';

		var control = this;

		// Change the value.
		this.container.on( 'click', 'input', function () {
			control.setting.set( jQuery( this ).val() );
		} );

	}

} );

Copyright © 2019 by b0y-101