30 lines
755 B
JavaScript
30 lines
755 B
JavaScript
/**
|
|
* Scripts within the customizer controls window.
|
|
*
|
|
* Contextually shows the navbar type setting and informs the preview
|
|
* when users open or close the front page sections section.
|
|
*/
|
|
|
|
( function () {
|
|
wp.customize.bind( 'ready', function () {
|
|
// Only show the navbar type setting when running Bootstrap 5.
|
|
wp.customize( 'understrap_bootstrap_version', function ( setting ) {
|
|
wp.customize.control(
|
|
'understrap_navbar_type',
|
|
function ( control ) {
|
|
const visibility = function () {
|
|
if ( 'bootstrap5' === setting.get() ) {
|
|
control.container.slideDown( 180 );
|
|
} else {
|
|
control.container.slideUp( 180 );
|
|
}
|
|
};
|
|
|
|
visibility();
|
|
setting.bind( visibility );
|
|
}
|
|
);
|
|
} );
|
|
} );
|
|
} )();
|