Changeset 23429
- Timestamp:
- 02/15/2013 04:53:58 PM (12 years ago)
- Location:
- trunk/wp-content/themes
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/wp-content/themes/twentyeleven/inc/theme-customizer.js
r22316 r23429 2 2 wp.customize( 'blogname', function( value ) { 3 3 value.bind( function( to ) { 4 $( '#site-title a' ). html( to );4 $( '#site-title a' ).text( to ); 5 5 } ); 6 6 } ); 7 7 wp.customize( 'blogdescription', function( value ) { 8 8 value.bind( function( to ) { 9 $( '#site-description' ). html( to );9 $( '#site-description' ).text( to ); 10 10 } ); 11 11 } ); -
trunk/wp-content/themes/twentytwelve/js/theme-customizer.js
r22318 r23429 10 10 wp.customize( 'blogname', function( value ) { 11 11 value.bind( function( to ) { 12 $( '.site-title a' ). html( to );12 $( '.site-title a' ).text( to ); 13 13 } ); 14 14 } ); 15 15 wp.customize( 'blogdescription', function( value ) { 16 16 value.bind( function( to ) { 17 $( '.site-description' ). html( to );17 $( '.site-description' ).text( to ); 18 18 } ); 19 19 } );
Note: See TracChangeset
for help on using the changeset viewer.