| Server IP : 162.215.171.210 / Your IP : 216.73.216.88 Web Server : Apache System : Linux 162-215-171-210.bluehost.com 3.10.0-1160.119.1.el7.x86_64 #1 SMP Tue Jun 4 14:43:51 UTC 2024 x86_64 User : swansondentalgro ( 1070) PHP Version : 8.2.33 Disable Function : NONE MySQL : OFF | cURL : ON | WGET : ON | Perl : ON | Python : ON | Sudo : ON | Pkexec : ON Directory : /home/swansondentalgro/public_html/wp-content/themes/genesis-block-theme/js/ |
Upload File : |
/**
* 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').text(to);
});
});
wp.customize('blogdescription',function(value){
value.bind(function(to){
$('.site-description').text(to);
});
});
// Accent background colors
wp.customize('genesis_block_theme_button_color',function(value) {
value.bind( function( to ) {
$('button:not(.preview-toggle), input[type="button"], input[type="reset"], input[type="submit"], .button, .comment-navigation a, .drawer .tax-widget a, .su-button, h3.comments-title, .page-numbers.current, .page-numbers:hover, .page-numbers a:hover, #page .more-link:hover').css('background-color',to);
} );
} );
// Accent text colors
wp.customize('genesis_block_theme_button_color',function(value) {
value.bind( function( to ) {
$('.entry-content p a, .entry-content p a:hover, .post-navigation a:hover .post-title, .entry-header .entry-title a:hover, #page .more-link:hover, .site-footer a, .main-navigation a:hover, .main-navigation ul li.current-menu-item a, .main-navigation ul li.current-page-item a').css('color',to);
} );
} );
})(jQuery);