MOON
Server: Apache
System: Linux server1.studioinfinity.com.br 2.6.32-954.3.5.lve1.4.90.el6.x86_64 #1 SMP Tue Feb 21 12:26:30 UTC 2023 x86_64
User: artinside (517)
PHP: 7.4.33
Disabled: exec,passthru,shell_exec,system
Upload Files
File: /home/artinside/www/lhh/themes/en/assets/js/plugins.toggles.js
window.scwTogglesPlugin = window.scwTogglesPlugin || {};

window.SEMICOLON_togglesInit = function( $toggleEl ){

	$toggleEl = $toggleEl.filter(':not(.customjs)');

	if( $toggleEl.length < 1 ){
		return true;
	}

	$toggleEl.each( function(){
		let element = $(this),
			elSpeed = element.attr('data-speed') || 300,
			elState = element.attr('data-state');

		if( elState != 'open' ){
			element.children('.toggle-content').hide();
		} else {
			element.addClass('toggle-active').children('.toggle-content').slideDown( Number(elSpeed) );
		}

		element.children('.toggle-header').off( 'click' ).on( 'click', function(){
			element.toggleClass('toggle-active').children('.toggle-content').slideToggle( Number(elSpeed) );
			return true;
		});
	});

};