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

10 lines
193 B
JavaScript

jQuery( function( $ ) {
wp.customize('line_height',function ( value ) {
value.bind(function ( to ) {
document.body.style.setProperty('--line-height', to);
}
);
} );
} );