????JFIF??x?x????'
Server IP : 104.21.48.1 / Your IP : 216.73.216.145 Web Server : LiteSpeed System : Linux premium151.web-hosting.com 4.18.0-553.44.1.lve.el8.x86_64 #1 SMP Thu Mar 13 14:29:12 UTC 2025 x86_64 User : tempvsty ( 647) PHP Version : 8.0.30 Disable Function : NONE MySQL : OFF | cURL : ON | WGET : ON | Perl : ON | Python : ON | Sudo : OFF | Pkexec : OFF Directory : /home/tempvsty/eaabusiness.com/wp-content/themes/thecompany/js/ |
Upload File : |
/** * File customizer.js. * * 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 a' ).text( to ); } ); } ); wp.customize( 'blogdescription', function( value ) { value.bind( function( to ) { $( '.site-description' ).text( to ); } ); } ); // search title wp.customize( 'search_title', function( value ) { value.bind( function( to ) { $( '.domain-finder-section .single h1' ).text( to ); } ); } ); // Why choose us title wp.customize( 'whychooseus_title', function( value ) { value.bind( function( to ) { $( '.why-choose-us .section-title h1' ).text( to ); } ); } ); // overview title wp.customize( 'overview_title', function( value ) { value.bind( function( to ) { $( '.overview .section-title h1' ).text( to ); } ); } ); // offer title wp.customize( 'offer_title', function( value ) { value.bind( function( to ) { $( '.what-we-offer .section-title h1' ).text( to ); } ); } ); // pricing title wp.customize( 'pricing_title', function( value ) { value.bind( function( to ) { $( '.pricing-table .section-title h1' ).text( to ); } ); } ); // pricing content wp.customize( 'pricing_Content', function( value ) { value.bind( function( to ) { $( '.pricing-table .info p' ).text( to ); } ); } ); // copyright content wp.customize( 'thecompany_copyright_setting', function( value ) { value.bind( function( to ) { $( '.copyright .row .text-center' ).text( to ); } ); } ); // Header text color. wp.customize( 'header_textcolor', function( value ) { value.bind( function( to ) { if ( 'blank' === to ) { $( '.site-title a, .site-description' ).css( { 'clip': 'rect(1px, 1px, 1px, 1px)', 'position': 'absolute' } ); } else { $( '.site-title a, .site-description' ).css( { 'clip': 'auto', 'position': 'relative' } ); $( '.site-title a, .site-description, .logo-menu .main-menu .navbar-nav > li > a:hover,.logo-menu .dropdown-menu > li > a:hover , .logo-menu .dropdown-menu .dropdown .dropdown-menu > li > a:hover ' ).css( { 'color': to } ); $( '.logo-menu .main-menu .navbar-default .navbar-nav > .active > a ' ).css( { 'background': to } ); } } ); } ); } )( jQuery );