| Current Path : /home/x/b/o/xbodynamge/namtation/wp-content/ |
| Current File : /home/x/b/o/xbodynamge/namtation/wp-content/helper-script.js.tar |
www/wp-content/themes/hestia/inc/customizer/controls/ui/customizer-scroll/helper-script.js 0000644 00000002245 15115103057 0031313 0 ustar 00 home/xbodynamge /**
* Script fort the customizer sections scroll function.
*
* @since 1.1.43
* @package Hestia
*
* @author ThemeIsle
*/
/* global wp */
var hestia_customizer_section_scroll = function ( $ ) {
'use strict';
$(
function () {
var customize = wp.customize;
customize.preview.bind(
'clicked-customizer-section', function( data ) {
var sectionId = '';
switch (data) {
case 'shop':
sectionId = 'section#products';
break;
case 'ribbon':
sectionId = 'section.hestia-ribbon';
break;
case 'sub-accordion-section-sidebar-widgets-subscribe-widgets':
sectionId = 'section#subscribe';
break;
case 'bar':
sectionId = 'section.hestia-clients-bar';
break;
case 'slider':
sectionId = '#carousel-hestia-generic.carousel.slide';
break;
default:
sectionId = 'section#' + data;
break;
}
if ( $( sectionId ).length > 0) {
$( 'html, body' ).animate(
{
scrollTop: $( sectionId ).offset().top - 100
}, 1000
);
}
}
);
}
);
};
hestia_customizer_section_scroll( jQuery );