2012-11-28 14:51:38 -08:00
|
|
|
/**
|
|
|
|
* 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-02-07 10:50:34 -08:00
|
|
|
$( '.site-title a' ).text( to );
|
2012-11-28 14:51:38 -08:00
|
|
|
} );
|
|
|
|
} );
|
|
|
|
wp.customize( 'blogdescription', function( value ) {
|
|
|
|
value.bind( function( to ) {
|
2013-02-07 10:50:34 -08:00
|
|
|
$( '.site-description' ).text( to );
|
2012-11-28 14:51:38 -08:00
|
|
|
} );
|
|
|
|
} );
|
|
|
|
} )( jQuery );
|