File "customize-preview.js"

Full Path: /home/leadltht/fastlinkinternet.com/admin/wp-content/themes/internet-provider/js/customize-preview.js
File size: 406 bytes
MIME-type: text/plain
Charset: utf-8

/**
 * Live-update changed settings in real time in the Customizer preview.
 */

( function( $ ) {
		api = wp.customize;

	// Site title.
	api( 'blogname', function( value ) {
		value.bind( function( to ) {
			$( '.logo h1' ).text( to );
		} );
	} );

	// Site tagline.
	api( 'blogdescription', function( value ) {
		value.bind( function( to ) {
			$( '.logo span' ).text( to );
		} );
	} );
} )( jQuery );