HEX
Server: Apache
System: Linux p3plzcpnl506847.prod.phx3.secureserver.net 4.18.0-553.54.1.lve.el8.x86_64 #1 SMP Wed Jun 4 13:01:13 UTC 2025 x86_64
User: slfopp7cb1df (5698090)
PHP: 8.1.34
Disabled: NONE
Upload Files
File: /home/slfopp7cb1df/public_html/pm/documentation/assets/js/helper.js
$(document).ready(function () {
    $.ajaxSetup({cache: false});

    //expand or collaps sidebar menu items
    $("#sidebar-menu a").click(function () {
        var $target = $(this).parent();
        if ($target.hasClass('main')) {
            if ($target.hasClass("expand")) { //nested list
                if ($target.hasClass('open')) {
                    $target.removeClass('open');
                } else {
                    $("#sidebar-menu >.expand").removeClass('open');
                    $target.addClass('open');
                }
            } else { //main list
                $("#sidebar-menu >.expand").removeClass('open');
            }

            $("#sidebar-menu li").removeClass("active");
            $target.addClass("active");
        }
    });

    //the top offset will be changed while scrolling
    //so, we've to store it first
    var sectionsData = [];
    setTimeout(function () {
        $('section').each(function () {
            sectionsData.push({
                "name": "#" + $(this).attr("id"),
                "top": $(this).offset().top,
                "height": $(this).height()
            });
        });
    }, 500);

    //add active class on scrolling window
    $("#scrollable-page").scroll(function () {
        var scrollPosition = $("#scrollable-page").scrollTop() + 70;

        for (i = 0; i < sectionsData.length; i++) {
            var section = sectionsData[i];

            if ((section.top <= scrollPosition) && ((section.top + section.height) >= scrollPosition)) {
                $("#sidebar-menu li").removeClass('active open');

                var $parentList = $("#sidebar-menu").find("a[href='" + section.name + "']").parent("li");
                if ($parentList.hasClass("main")) { //main list
                    $parentList.addClass("active");
                } else { //nested list
                    $parentList.closest("li.expand").addClass("active open");
                }
            }
        }

    });

    //expand nested list from hash link
    var target = window.location.hash,
            $selector = $("#sidebar-menu").find("a[href='" + target + "']");

    if (!($selector).hasClass("main")) {
        ($selector).closest("li.main").addClass("open active");
    }

    $('.sidebar-toggle-btn').on('click', function () {
        $("body").toggleClass('sidebar-toggled');
    });

    if ($(window).width() < 1200) {
        $(".main").click(function (evt) {
            $("section").removeAttr('class');
            $("#" + $(this).attr("data-id")).addClass('pt85');
        });
        $(".menu-item").click(function () {
            $('body').removeClass('sidebar-toggled');
        });
    }
    
    feather.replace();

});