File: /home/vhosts/harpoeditore.it/httpdocs/wp-content/themes/neve/assets/customizer/js/button.js
/**
* 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 );