site-logo-header-text.js 520 B

123456789101112131415161718192021222324
  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;
  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);