wpcom-customize-message.js 581 B

12345678910111213141516171819202122
  1. /**
  2. * File wpcom-customize-preview.js.
  3. *
  4. * Instantly live-update customizer settings in the preview for improved user experience,
  5. * targeting the updates needed to hide the page title on the homepage on WordPress.com.
  6. */
  7. ( function( $ ) {
  8. 'use strict';
  9. wp.customize.bind( 'ready', function () {
  10. wp.customize.panel( 'themes', function( panel ) {
  11. panel.deferred.embedded.done( function() {
  12. var customMessage;
  13. customMessage = $( wp.template( 'varia-custom-message' )() );
  14. panel.headContainer.append( customMessage );
  15. } );
  16. } );
  17. } );
  18. } )( jQuery );