File: //old_home_backup/busesatwork.co.uk/public_html/wp-content/themes/sydney/js/customizer.js
/**
* Theme Customizer enhancements for a better user experience.
*
* Contains handlers to make Theme Customizer preview reload changes asynchronously.
*/
( 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 );
} );
} );
// Header text color.
wp.customize( 'header_textcolor', function( value ) {
value.bind( function( to ) {
if ( 'blank' === to ) {
$( '.site-title, .site-description' ).css( {
'clip': 'rect(1px, 1px, 1px, 1px)',
'position': 'absolute'
} );
} else {
$( '.site-title, .site-description' ).css( {
'clip': 'auto',
'color': to,
'position': 'relative'
} );
}
} );
} );
//Site title
wp.customize('site_title_color',function( value ) {
value.bind( function( newval ) {
$('.site-title a').css('color', newval );
} );
});
//Site desc
wp.customize('site_desc_color',function( value ) {
value.bind( function( newval ) {
$('.site-description').css('color', newval );
} );
});
//Top level menu items
wp.customize('top_items_color',function( value ) {
value.bind( function( newval ) {
$('#mainnav ul li a').not('#mainnav .sub-menu li a').css('color', newval );
} );
});
//Sub-menu items
wp.customize('submenu_items_color',function( value ) {
value.bind( function( newval ) {
$('#mainnav .sub-menu li a ').css('color', newval );
} );
});
//Slider text
wp.customize('slider_text',function( value ) {
value.bind( function( newval ) {
$('.text-slider .maintitle, .text-slider .subtitle').css('color', newval );
} );
});
// Body text color
wp.customize('body_text_color',function( value ) {
value.bind( function( newval ) {
$('body').css('color', newval );
} );
});
//Sidebar background
wp.customize('sidebar_background',function( value ) {
value.bind( function( newval ) {
$('.widget-area').css('background-color', newval );
} );
});
//Sidebar color
wp.customize('sidebar_color',function( value ) {
value.bind( function( newval ) {
$('.widget-area,.widget-area a, .widget-area .widget-title').css('color', newval );
} );
});
//Footer widgets background
wp.customize('footer_widgets_background',function( value ) {
value.bind( function( newval ) {
$('.footer-widgets').css('background-color', newval );
} );
});
//Footer widgets color
wp.customize('footer_widgets_color',function( value ) {
value.bind( function( newval ) {
$('#sidebar-footer,#sidebar-footer a,.footer-widgets .widget-title').css('color', newval );
} );
});
//Footer background
wp.customize('footer_background',function( value ) {
value.bind( function( newval ) {
$('.site-footer').css('background-color', newval );
} );
});
//Footer color
wp.customize('footer_color',function( value ) {
value.bind( function( newval ) {
$('.site-footer,.site-footer a').css('color', newval );
} );
});
} )( jQuery );