15 lines
273 B
JavaScript
15 lines
273 B
JavaScript
wp.customize.controlConstructor['oceanwp-dropdown-pages'] = wp.customize.Control.extend({
|
|
|
|
ready: function() {
|
|
|
|
'use strict';
|
|
|
|
var control = this;
|
|
|
|
control.container.on( 'change', 'select', function() {
|
|
control.setting.set( jQuery( this ).val() );
|
|
} );
|
|
|
|
}
|
|
|
|
}); |