| Server IP : 103.191.208.88 / Your IP : 216.73.216.44 Web Server : Microsoft-IIS/10.0 System : Windows NT COSMIC 10.0 build 20348 (Windows Server 2022) AMD64 User : IWPD_1831(willswel_) ( 0) PHP Version : 8.2.31 Disable Function : NONE MySQL : OFF | cURL : ON | WGET : OFF | Perl : OFF | Python : OFF | Sudo : OFF | Pkexec : OFF Directory : D:/Inetpub/vhosts/willswell.com/httpdocs/wp-content/themes/aravalli/assets/js/ |
Upload File : |
( 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 );
});