/** * File customizer.js. * * Theme Customizer enhancements for a better user experience. * * Contains handlers to make Theme Customizer preview reload changes asynchronously. */ ( function( $ ) { // Feature Pages height wp.customize( 'featured_pages_height', function( value ) { value.bind( function( to ) { $( ".feature-pages-layout-one .feature-pages-image" ).css( "height", to + 'px' ); } ); } ); // Feature Pages height wp.customize( 'featured_pages_radius', function( value ) { value.bind( function( to ) { $( ".feature-pages-content-wrap .feature-pages-image" ).css( "borderRadius", to + 'px' ); } ); } ); // Feature Posts height wp.customize( 'feature_posts_height', function( value ) { value.bind( function( to ) { $( ".feature-posts-content-wrap .feature-posts-image" ).css( "height", to + 'px' ); } ); } ); // Header image height wp.customize( 'header_image_height', function( value ) { value.bind( function( to ) { $( ".header-image-wrap" ).css( "height", to + 'px' ); } ); } ); // Blog Grid Thumbnail Post border radius wp.customize( 'posts_border_radius_thumbnail', function( value ) { value.bind( function( to ) { $( '#primary .grid-thumbnail article:not(.sticky).list-post .featured-image a' ).css( "borderRadius", to + 'px' ); $( '.grid-thumbnail article.sticky.list-post' ).css( "borderRadius", to + 'px' ); } ); } ); // Feature Posts Two height wp.customize( 'feature_posts_two_radius', function( value ) { value.bind( function( to ) { $( ".section-feature-posts-two-area .feature-posts-image" ).css( "borderRadius", to + 'px' ); } ); } ); } )( jQuery );