kollapsminoriteten/wp-content/plugins/jetpack/modules/theme-tools/site-logo/js/site-logo-header-text.js

25 lines
531 B
JavaScript
Raw Normal View History

2019-11-15 23:26:29 +01:00
/* global site_logo_header_classes */
/**
* JS for handling the "Display Header Text" setting's realtime preview.
*/
2020-09-15 14:30:05 +02:00
( function ( $ ) {
2019-11-15 23:26:29 +01:00
var api = wp.customize,
$classes = site_logo_header_classes;
2020-09-15 14:30:05 +02:00
api( 'site_logo_header_text', function ( value ) {
value.bind( function ( to ) {
2019-11-15 23:26:29 +01:00
if ( true === to ) {
$( $classes ).css( {
position: 'static',
clip: 'auto',
} );
} else {
$( $classes ).css( {
position: 'absolute',
clip: 'rect(1px 1px 1px 1px)',
} );
}
} );
} );
} )( jQuery );