xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx
Base: /home/ayyokffr/monsterbeatsbydrepaschere.com
Current: /home/ayyokffr/monsterbeatsbydrepaschere.com/wp-content/themes/twentynineteen/js
Name
Type
Size
Action
..
dir
-
customize-controls.js
file
922
edit
customize-preview.js
file
1677
edit
priority-menu.js
file
5375
edit
skip-link-focus-fix.js
file
794
edit
touch-keyboard-navigation.js
file
9581
edit
Quick Jump (auto-detected)
/home/ayyokffr/monsterbeatsbydrepaschere.com
Reset Base
Overwrite
Upload
Editing: wp-content/themes/twentynineteen/js/customize-controls.js
/** * 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 ); } }; // The control-specific label is redundant because, visually, this control is part of the Color Scheme control. control.container.find( '.customize-control-title:first' ).addClass( 'screen-reader-text' ); visibility(); setting.bind( visibility ); }); }); }); })();
Save