Files
Zeitfresser-Wordpress-Theme/inc/blocks/font-customization/font-weight/customizer-font-weight.js
T
2026-04-20 22:55:59 +02:00

10 lines
193 B
JavaScript

jQuery( function( $ ) {
wp.customize('font_weight',function ( value ) {
value.bind(function ( to ) {
document.body.style.setProperty('--font-weight', to);
}
);
} );
} );