site-logo-header-text.js
25 lines
| 1 | /* global site_logo_header_classes */ |
| 2 | /** |
| 3 | * JS for handling the "Display Header Text" setting's realtime preview. |
| 4 | */ |
| 5 | ( function ( $ ) { |
| 6 | var api = wp.customize, |
| 7 | $classes = site_logo_header_classes.classes; |
| 8 | |
| 9 | api( 'site_logo_header_text', function ( value ) { |
| 10 | value.bind( function ( to ) { |
| 11 | if ( true === to ) { |
| 12 | $( $classes ).css( { |
| 13 | position: 'static', |
| 14 | clip: 'auto', |
| 15 | } ); |
| 16 | } else { |
| 17 | $( $classes ).css( { |
| 18 | position: 'absolute', |
| 19 | clip: 'rect(1px 1px 1px 1px)', |
| 20 | } ); |
| 21 | } |
| 22 | } ); |
| 23 | } ); |
| 24 | } )( jQuery ); |
| 25 |