Files
DESKTOP-GBA0BK8\Admin 7c8c8b1c76 first commit
2023-04-08 12:19:53 -04:00

18 lines
344 B
JavaScript

wp.customize.controlConstructor['oceanwp-textarea'] = wp.customize.Control.extend({
ready: function() {
'use strict';
var control = this,
element = this.container.find( 'textarea' );
// On change
this.container.on( 'change keyup paste', 'textarea', function() {
control.setting.set( jQuery( this ).val() );
});
}
});