2013-07-29 00:55:10 +02:00
|
|
|
/**
|
2014-10-15 19:21:19 +02:00
|
|
|
* Twenty Fourteen Customizer enhancements for a better user experience.
|
2013-07-29 00:55:10 +02:00
|
|
|
*
|
2014-10-15 19:21:19 +02:00
|
|
|
* Contains handlers to make Customizer preview reload changes asynchronously.
|
2013-07-29 00:55:10 +02:00
|
|
|
*/
|
|
|
|
( function( $ ) {
|
|
|
|
// Site title and description.
|
|
|
|
wp.customize( 'blogname', function( value ) {
|
|
|
|
value.bind( function( to ) {
|
|
|
|
$( '.site-title a' ).text( to );
|
|
|
|
} );
|
|
|
|
} );
|
|
|
|
wp.customize( 'blogdescription', function( value ) {
|
|
|
|
value.bind( function( to ) {
|
|
|
|
$( '.site-description' ).text( to );
|
|
|
|
} );
|
|
|
|
} );
|
2013-12-03 19:27:10 +01:00
|
|
|
// Header text color.
|
|
|
|
wp.customize( 'header_textcolor', function( value ) {
|
|
|
|
value.bind( function( to ) {
|
2013-12-03 22:13:10 +01:00
|
|
|
if ( 'blank' === to ) {
|
2013-12-05 18:30:11 +01:00
|
|
|
$( '.site-title, .site-description' ).css( {
|
2013-12-03 19:27:10 +01:00
|
|
|
'clip': 'rect(1px, 1px, 1px, 1px)',
|
|
|
|
'position': 'absolute'
|
|
|
|
} );
|
|
|
|
} else {
|
2013-12-05 18:30:11 +01:00
|
|
|
$( '.site-title, .site-description' ).css( {
|
2013-12-03 19:27:10 +01:00
|
|
|
'clip': 'auto',
|
2013-12-05 18:30:11 +01:00
|
|
|
'position': 'static'
|
2013-12-03 19:27:10 +01:00
|
|
|
} );
|
|
|
|
|
|
|
|
$( '.site-title a' ).css( {
|
2013-12-03 22:13:10 +01:00
|
|
|
'color': to
|
2013-12-03 19:27:10 +01:00
|
|
|
} );
|
|
|
|
}
|
|
|
|
} );
|
|
|
|
} );
|
2013-07-29 00:55:10 +02:00
|
|
|
} )( jQuery );
|