Server IP : 170.150.155.74 / Your IP : 18.223.119.139 Web Server : Apache/2.4.53 (Debian) System : Linux b22bf132354b 5.4.0-162-generic #179-Ubuntu SMP Mon Aug 14 08:51:31 UTC 2023 x86_64 User : www-data ( 33) PHP Version : 7.4.29 Disable Function : NONE MySQL : OFF | cURL : ON | WGET : OFF | Perl : ON | Python : OFF | Sudo : OFF | Pkexec : OFF Directory : /var/www/html/wp-content/themes/neve/assets/customizer/js/ |
Upload File : |
/** * Customizer font selector control. * * @package Neve\Customizer\Controlss */ ( function($) { 'use strict'; wp.tiCustomizeButton = { init: function() { $( '#customize-theme-controls' ).on( 'click', '.menu-shortcut', function(e) { wp.customize.section( 'menu_locations' ).focus(); e.preventDefault(); } ); $( '#customize-theme-controls' ).on( 'click', '.neve-control-focus', function(e) { wp.customize.control( $( this ).data( 'control-to-focus' ) ).focus(); e.preventDefault(); } ); } }; $( document ).ready( function() { wp.tiCustomizeButton.init(); } ); } )( jQuery );