🔐 Sid Gifari File Manager Pro
v8.0.5 | 2026-08-07 01:02:26 | PHP 8.2.32
📂
/ (Root)
/
home
/
eliteewa
/
public_html
/
wp-content
/
themes
/
blocksy
/
static
/
js
/
customizer
📍 /home/eliteewa/public_html/wp-content/themes/blocksy/static/js/customizer
🔄 Refresh
✏️
Editing: customizer-color-scheme.js
Writable
export const listenToChanges = () => { const renderValue = () => { if (!wp.customize._value['customizer_color_scheme']) { return } if (!document.body) { return } const overlay = document.querySelector('.wp-full-overlay') document.body.classList.remove('ct-dark-mode') overlay.classList.add('ct-disable-transitions') setTimeout( () => overlay.classList.remove('ct-disable-transitions'), 500 ) if (wp.customize._value['customizer_color_scheme']() === 'yes') { document.body.classList.add('ct-dark-mode') } } wp.customize.bind('change', (e) => { if (e.id !== 'customizer_color_scheme') return renderValue() }) wp.customize.bind('ready', () => renderValue()) }
💾 Save Changes
❌ Cancel