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

10 lines
183 B
JavaScript

jQuery( function( $ ) {
wp.customize('font_size',function ( value ) {
value.bind(function ( to ) {
$( 'body,html' ).css( 'font-size', to+'px' );
}
);
} );
} );