File: /home/muoapartman/www/wp-content/themes/aravalli/assets/js/customizer-section.js
( function( api ) {
// Extends our custom "example-1" section.
api.sectionConstructor['plugin-section'] = api.Section.extend( {
// No events for this type of section.
attachEvents: function () {},
// Always make the section active.
isContextuallyActive: function () {
return true;
}
} );
} )( wp.customize );
function aravallifrontpagesectionsscroll( section_id ){
var scroll_section_id = "slider-section";
var $contents = jQuery('#customize-preview iframe').contents();
switch ( section_id ) {
case 'accordion-section-checkin_setting':
scroll_section_id = "checkin-section";
break;
case 'accordion-section-room_setting':
scroll_section_id = "rooms-section";
break;
case 'accordion-section-features_setting':
scroll_section_id = "features";
break;
case 'accordion-section-amenities_setting':
scroll_section_id = "amenities";
break;
case 'accordion-section-blog_setting':
scroll_section_id = "blog-grid";
break;
}
if( $contents.find('#'+scroll_section_id).length > 0 ){
$contents.find("html, body").animate({
scrollTop: $contents.find( "#" + scroll_section_id ).offset().top
}, 1000);
}
}
jQuery('body').on('click', '#sub-accordion-panel-aravalli_frontpage_sections .control-subsection .accordion-section-title', function(event) {
var section_id = jQuery(this).parent('.control-subsection').attr('id');
aravallifrontpagesectionsscroll( section_id );
});