wp386/js/customizer.js

15 lines
356 B
JavaScript
Raw Normal View History

/**
* Theme Customizer enhancements for a better user experience.
*
* Contains handlers to make Theme Customizer preview reload changes asynchronously.
*/
( function( $ ) {
// Site title and description.
wp.customize( 'blogname', function( value ) {
value.bind( function( to ) {
2013-08-07 18:43:53 +09:00
$( '#masthead a.brand' ).text( to );
} );
} );
2013-07-14 16:38:08 +10:00
} )( jQuery );