File: /var/www/vfconf/wp-content/themes/event-star/acmethemes/core/js/customizer-controls.js
jQuery(document).ready(function ($) {
$('.at-customizer').on( 'click', function( evt ){
evt.preventDefault();
section = $(this).data('section');
panel = $(this).data('panel');
if ( section ) {
wp.customize.section( section ).focus();
}
if ( panel ) {
wp.customize.panel( panel ).focus();
}
});
$( ".at-date-picker" ).each(function () {
$(this).datetimepicker({
separator: ' - ',
dateFormat: 'dd/mm/yy'
});
});
});