16 lines
284 B
JavaScript
16 lines
284 B
JavaScript
wp.customize.controlConstructor['oceanwp-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() );
|
|
});
|
|
}
|
|
|
|
});
|