WordPress/wp-content/themes/twentyfifteen/js/customize-preview.js
2014-11-11 19:36:23 +00:00

34 lines
807 B
JavaScript

/**
* Live-update changed settings in real time in the Customizer preview.
*/
( function( $ ) {
var $style = $( '#twentyfifteen-color-scheme-css' );
if ( ! $style.length ) {
$style = $( 'head' ).append( '<style type="text/css" id="twentyfifteen-color-scheme-css" />' )
.find( '#twentyfifteen-color-scheme-css' );
}
// Site title.
wp.customize( 'blogname', function( value ) {
value.bind( function( to ) {
$( '.site-title a' ).text( to );
} );
} );
// Site tagline.
wp.customize( 'blogdescription', function( value ) {
value.bind( function( to ) {
$( '.site-description' ).text( to );
} );
} );
// Color Scheme CSS.
wp.customize( 'color_scheme_css', function( value ) {
value.bind( function( to ) {
$style.html( to );
} );
} );
} )( jQuery );