
/*!
 * Thermotraffic Sitepackage v1.0.0 (https://www.web-to-date.com)
 * Copyright 2017-2020 Andrea Moroni
 * Licensed under the GPL-2.0-or-later license
 */
console.log("WE LOVE TYPO3");

$(function () {
    "use strict";
    $('[data-toggle=func-btn]').click(function () {
        $('#func-btn-container').toggleClass('active');
    });
    $(window).on('scroll', function () {
        $('#func-btn-container').removeClass('active');
    });
});

// Multilevel Bootstrap Menu
$('.dropdown-menu a.dropdown-toggle').on('click', function (e) {
    if (!$(this).next().hasClass('show')) {
        $(this).parents('.dropdown-menu').first().find('.show').removeClass("show");
    }
    var $subMenu = $(this).next(".dropdown-menu");
    $subMenu.toggleClass('show');

    $(this).parents('li.nav-item.dropdown.show').on('hidden.bs.dropdown', function (e) {
        $('.dropdown-submenu .show').removeClass("show");
    });

    return false;
});
