Follow through with 'customizer' naming convention.

This commit is contained in:
obenland 2012-11-30 09:26:37 -08:00
parent c7d3e37fc6
commit 5bfc37093b
2 changed files with 1 additions and 1 deletions

View file

@ -1,19 +0,0 @@
/**
* 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 ) {
$( '.site-title a' ).html( to );
} );
} );
wp.customize( 'blogdescription', function( value ) {
value.bind( function( to ) {
$( '.site-description' ).html( to );
} );
} );
} )( jQuery );