Files
szkoleniauryzaj.pl/wp-content/plugins/password-protect-page/includes/customizers/assets/ppw-toggle-control.js
2026-04-26 23:47:49 +02:00

16 lines
318 B
JavaScript

( function( $, api ) {
api.controlConstructor['toggle'] = api.Control.extend( {
ready: function() {
var control = this;
this.container.on( 'change', 'input:checkbox', function() {
value = this.checked ? true : false;
control.setting.set( value );
} );
}
} );
} )( jQuery, wp.customize );