HEX
Server: Apache
System: Linux web2213.uni5.net 5.4.282-1.el8.elrepo.x86_64 #1 SMP Mon Aug 19 18:33:22 EDT 2024 x86_64
User: clinicamaciel (596848)
PHP: 7.3.33
Disabled: apache_child_terminate,c99_buff_prepare,c99_sess_put,dl,eval,exec,leak,link,myshellexec,openlog,passthru,pclose,pcntl_exec,php_check_syntax,php_strip_whitespace,popen,posix_kill,posix_mkfifo,posix_setpgid,posix_setsid,posix_setuid,proc_close,proc_get_status,proc_nice,proc_open,proc_terminate,shell_exec,show_source,symlink,system,socket_listen,socket_create_listen,putenv
Upload Files
File: /home/clinicamaciel/www/wp-content/plugins/vc-extensions-bundle/accordion/js/script.js
jQuery(document).ready(function($) {
    // $('.ui-corner-top a').on('click', function(event) {
    //     console.log('click');
    //     $('.cq-accordion').each(function() {
    //         var _this = $(this);
    //         $(this).find('li').each(function(index) {
    //           $(this).find('i').css('margin-top', ($(this).outerHeight()-9)*.5);
    //         });
    //     })
    // });
    $('.cq-accordion').each(function() {
        var _this = $(this);
        var _displayfirst = $(this).data('displayfirst') == "on" ? true : false;
        $(this).find('.accordion-content').each(function(index) {
          // $(this).children().first('p:empty').remove();
          // $(this).wrapInner('<p></p>');
        });
        $(this).find('li').each(function(index) {
          if(index==0&&_displayfirst) $(this).find('input').trigger('click');
          $(this).find('i').css('margin-top', ($(this).outerHeight()-9)*.5);
        });
    })
    $('.cq-accordion2').each(function() {
        var _this = $(this);
        var _titlebg = $(this).data('titlebg');
        var _titlecolor = $(this).data('titlecolor');
        var _titlehoverbg = $(this).data('titlehoverbg');
        var _titlehovercolor = $(this).data('titlehovercolor');
        var _displayfirst = $(this).data('displayfirst') == "on" ? true : false;
        $(this).find('.accordion-content').each(function(index) {
          $(this).children().first('p:empty').remove();
        });

        $(this).find('.accordionTitle').each(function(index) {
            $(this).css('background-color', _titlebg).on('mouseover', function(event) {
                // $(this).css('background-color', _titlehoverbg);
                $(this).css({
                  'background-color': _titlehoverbg,
                  'color': _titlehovercolor
                });
            }).on('mouseleave', function(event) {
                // $(this).css('background-color', _titlebg);
                if(!$(this).hasClass('accordionTitleActive')){
                    $(this).css({
                      'background-color': _titlebg,
                      'color': _titlecolor
                    });
                }
            });
            if(index==0&&_displayfirst){
              var _content = $(this).parent().next();
              $(this).toggleClass('accordionTitleActive').css({
                  'background-color': _titlehoverbg,
                  'color': _titlehovercolor
                });

              if(_content.hasClass('accordionItemCollapsed')) {
                if(_content.hasClass('cq-animateOut')){
                  _content.removeClass('cq-animateOut');
                }
                _content.addClass('cq-animateIn');

              }else{
                 _content.removeClass('cq-animateIn');
                 _content.addClass('cq-animateOut');
              }
              _content.toggleClass('accordionItemCollapsed');
            }



        });
        $('.accordionTitle', $(this)).each(function(index) {
            $(this).on('click', function(event) {
              if($(this).hasClass('accordionTitle')){
                  var _content = $(this).parent().next();
                  $(this).toggleClass('accordionTitleActive');

                  if(_content.hasClass('accordionItemCollapsed')) {
                    if(_content.hasClass('cq-animateOut')){
                      _content.removeClass('cq-animateOut');
                    }
                    _content.addClass('cq-animateIn');

                  }else{
                     _content.removeClass('cq-animateIn');
                     _content.addClass('cq-animateOut');
                  }
                  _content.toggleClass('accordionItemCollapsed');
              }

              event.preventDefault();
            });
        });


    })

});