/*
WARNING! DO NOT EDIT THIS FILE!
This file is part of the core Bizznis parent theme.
Please do all modifications in the form of a child theme.
*/
( function( $ ) {
var api = wp.customize;
/**
* Asynchronous updating
*/
// Site Title
api( 'blogname', function( value ) {
value.bind( function( to ) {
var $content = $('.site-title a');
if ( ! $content.length ) {
$('.site-title').prepend('' + to + '');
}
if ( ! to ) {
$content.remove();
}
$content.text( to );
} );
} );
// Tagline
api( 'blogdescription', function( value ) {
value.bind( function( to ) {
var $content = $('.site-description');
if ( ! $content.length ) {
$('.site-branding').append('' + to + '');
}
if ( ! to ) {
$content.remove();
}
$content.text( to );
} );
} );
} )( jQuery );