2013-02-18 23:08:56 +00:00
|
|
|
/**
|
2014-10-15 17:21:19 +00:00
|
|
|
* Customizer enhancements for a better user experience.
|
2013-02-18 23:08:56 +00:00
|
|
|
*
|
2014-10-15 17:21:19 +00:00
|
|
|
* Contains handlers to make Customizer preview reload changes asynchronously.
|
2013-02-18 23:08:56 +00:00
|
|
|
* Things like site title and description changes.
|
|
|
|
*/
|
|
|
|
|
|
|
|
( function( $ ) {
|
|
|
|
// Site title and description.
|
|
|
|
wp.customize( 'blogname', function( value ) {
|
|
|
|
value.bind( function( to ) {
|
2013-02-26 04:50:09 +00:00
|
|
|
$( '.site-title' ).text( to );
|
2013-02-18 23:08:56 +00:00
|
|
|
} );
|
|
|
|
} );
|
|
|
|
wp.customize( 'blogdescription', function( value ) {
|
|
|
|
value.bind( function( to ) {
|
|
|
|
$( '.site-description' ).text( to );
|
|
|
|
} );
|
|
|
|
} );
|
2013-02-26 04:59:35 +00:00
|
|
|
// Header text color.
|
|
|
|
wp.customize( 'header_textcolor', function( value ) {
|
|
|
|
value.bind( function( to ) {
|
2013-03-12 16:52:30 +00:00
|
|
|
if ( 'blank' == to ) {
|
2014-11-20 17:06:23 +00:00
|
|
|
if ( 'remove-header' == wp.customize.instance( 'header_image' ).get() ) {
|
2013-04-23 17:55:55 +00:00
|
|
|
$( '.home-link' ).css( 'min-height', '0' );
|
2014-11-20 17:06:23 +00:00
|
|
|
}
|
2013-03-12 16:52:30 +00:00
|
|
|
$( '.site-title, .site-description' ).css( {
|
|
|
|
'clip': 'rect(1px, 1px, 1px, 1px)',
|
|
|
|
'position': 'absolute'
|
|
|
|
} );
|
|
|
|
} else {
|
2013-04-23 17:55:55 +00:00
|
|
|
$( '.home-link' ).css( 'min-height', '230px' );
|
2013-03-12 16:52:30 +00:00
|
|
|
$( '.site-title, .site-description' ).css( {
|
|
|
|
'clip': 'auto',
|
|
|
|
'color': to,
|
|
|
|
'position': 'relative'
|
|
|
|
} );
|
|
|
|
}
|
2013-02-26 04:59:35 +00:00
|
|
|
} );
|
|
|
|
} );
|
|
|
|
} )( jQuery );
|