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