/var/www/vhosts/ihelp.ro/ajutam.ro/wp-content/themes/twentytwentyone/assets/js
NameSizeModeActions
customize-helpers.js11000644editdlrm
customize-preview.js25330644editdlrm
customize.js10290644editdlrm
dark-mode-toggler.js22450644editdlrm
editor-dark-mode-support.js12430644editdlrm
editor.js9210644editdlrm
palette-colorpicker.js15930644editdlrm
polyfills.js11270644editdlrm
primary-navigation.js60470644editdlrm
responsive-embeds.js11270644editdlrm
skip-link-focus-fix.js8320644editdlrm
Edit: /var/www/vhosts/ihelp.ro/ajutam.ro/wp-content/themes/twentytwentyone/assets/js/customize.js (1029B)
/* global twentytwentyoneGetHexLum */ ( function() { // Wait until the customizer has finished loading. wp.customize.bind( 'ready', function() { // Hide the "respect_user_color_preference" setting if the background-color is dark. if ( 127 > twentytwentyoneGetHexLum( wp.customize( 'background_color' ).get() ) ) { wp.customize.control( 'respect_user_color_preference' ).deactivate(); wp.customize.control( 'respect_user_color_preference_notice' ).deactivate(); } // Handle changes to the background-color. wp.customize( 'background_color', function( setting ) { setting.bind( function( value ) { if ( 127 > twentytwentyoneGetHexLum( value ) ) { wp.customize.control( 'respect_user_color_preference' ).deactivate(); wp.customize.control( 'respect_user_color_preference_notice' ).activate(); } else { wp.customize.control( 'respect_user_color_preference' ).activate(); wp.customize.control( 'respect_user_color_preference_notice' ).deactivate(); } } ); } ); } ); }() );