( function( $ ) { /* * Following functions are for utilizing the postMessage transport setting */ var panel = $('html', window.parent.document); var body = $('body'); var siteTitle = $('#site-title'); var tagline = $( '.tagline' ); var inlineStyles = $('#ct-apex-style-inline-css'); // Site title wp.customize( 'blogname', function( value ) { value.bind( function( to ) { // if there is a logo, don't replace it if( siteTitle.find('img').length == 0 ) { siteTitle.children('a').text( to ); } } ); } ); // Tagline wp.customize( 'blogdescription', function( value ) { value.bind( function( to ) { var tagline = $('.tagline'); if( tagline.length == 0 ) { $('#title-container').append('

'); } tagline.text( to ); } ); } ); // Logo wp.customize( 'logo_upload', function( value ) { value.bind( function( to ) { var link = siteTitle.children('a'); if ( to != '' ) { link.html(''); } else { link.html( panel.find('#customize-control-blogname').find('input').val() ); } } ); } ); // Custom CSS // get current Custom CSS var customCSS = panel.find('#customize-control-custom_css').find('textarea').val(); // get the CSS in the inline element var allCSS = inlineStyles.text(); // remove the Custom CSS from the other CSS allCSS = allCSS.replace(customCSS, ''); // update the CSS in the inline element w/o the custom css inlineStyles.text(allCSS); // add custom CSS to its own style element body.append(''); var setting = 'custom_css'; if ( panel.find('#sub-accordion-section-custom_css').length ) { setting = 'custom_css[apex]'; } // Custom CSS wp.customize( setting, function( value ) { value.bind( function( to ) { $('#style-inline-custom-css').remove(); if ( to != '' ) { to = ''; body.append( to ); } } ); } ); } )( jQuery );