Create New Item
Item Type
File
Folder
Item Name
Search file in folder and subfolders...
Are you sure want to rename?
File Manager
/
post-date
/
wp-content
/
plugins
/
kirki
/
kirki-packages
/
control-checkbox
/
src
:
control.js
Advanced Search
Upload
New Item
Settings
Back
Back Up
Advanced Editor
Save
import "./control.scss"; var kirkiCheckboxScript = { initKirkiControl: function( control ) { control = control || this; control.container.on( 'change', 'input', function() { control.setting.set( jQuery( this ).is( ':checked' ) ); } ); } }; wp.customize.controlConstructor['kirki-checkbox'] = wp.customize.kirkiDynamicControl.extend( kirkiCheckboxScript ); wp.customize.controlConstructor['kirki-switch'] = wp.customize.kirkiDynamicControl.extend( kirkiCheckboxScript ); wp.customize.controlConstructor['kirki-toggle'] = wp.customize.kirkiDynamicControl.extend( kirkiCheckboxScript );