暫無描述

site-logo-header-text.js 539B

12345678910111213141516171819202122232425
  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. api( 'site_logo_header_text', function ( value ) {
  9. value.bind( function ( to ) {
  10. if ( true === to ) {
  11. $( $classes ).css( {
  12. position: 'static',
  13. clip: 'auto',
  14. } );
  15. } else {
  16. $( $classes ).css( {
  17. position: 'absolute',
  18. clip: 'rect(1px 1px 1px 1px)',
  19. } );
  20. }
  21. } );
  22. } );
  23. } )( jQuery );