laipower/wp-content/plugins/gp-premium/library/customizer/controls/js/copyright-customizer.js

13 lines
306 B
JavaScript
Raw Normal View History

2020-04-07 13:03:04 +00:00
( function( $, api ) {
api.controlConstructor[ 'gp-copyright' ] = api.Control.extend( {
ready() {
2020-04-07 13:03:04 +00:00
var control = this;
$( '.gp-copyright-area', control.container ).on( 'change keyup',
function() {
control.setting.set( $( this ).val() );
}
);
},
2020-04-07 13:03:04 +00:00
} );
}( jQuery, wp.customize ) );