mirror of
https://github.com/WordPress/WordPress.git
synced 2024-11-04 18:01:42 +01:00
f447c32aca
Props Christian1012, hareesh-pillai. Fixes #40333. Built from https://develop.svn.wordpress.org/trunk@45923 git-svn-id: http://core.svn.wordpress.org/trunk@45734 1a063a9b-81f0-0310-95a4-ce76da25c4cd
31 lines
710 B
JavaScript
31 lines
710 B
JavaScript
/**
|
|
* File customize-controls.js.
|
|
*
|
|
* Theme Customizer enhancements for a better user experience.
|
|
*
|
|
* Contains handlers to make Theme Customizer preview reload changes asynchronously.
|
|
*/
|
|
|
|
(function() {
|
|
|
|
wp.customize.bind( 'ready', function() {
|
|
|
|
// Only show the color hue control when there's a custom primary color.
|
|
wp.customize( 'primary_color', function( setting ) {
|
|
wp.customize.control( 'primary_color_hue', function( control ) {
|
|
var visibility = function() {
|
|
if ( 'custom' === setting.get() ) {
|
|
control.container.slideDown( 180 );
|
|
} else {
|
|
control.container.slideUp( 180 );
|
|
}
|
|
};
|
|
|
|
visibility();
|
|
setting.bind( visibility );
|
|
});
|
|
});
|
|
});
|
|
|
|
})();
|