Fix unlinked site title in the Customizer

This commit is contained in:
Takashi Irie 2013-05-08 12:27:48 +01:00
parent 8ceefdcdeb
commit f367fefd72
2 changed files with 2 additions and 2 deletions

View file

@ -8,7 +8,7 @@
// Site title and description.
wp.customize( 'blogname', function( value ) {
value.bind( function( to ) {
$( '.site-title' ).text( to );
$( '.site-title a' ).text( to );
} );
} );
wp.customize( 'blogdescription', function( value ) {