Your IP : 216.73.216.95


Current Path : /var/test/www/html/37thanniversary/wp-content/themes/execoore/inc/
Upload File :
Current File : /var/test/www/html/37thanniversary/wp-content/themes/execoore/inc/default.js

'use strict';

/*
* ===========================================================
* DEFAULT SCRIPTS
* ===========================================================
* This file is loaded only if Hybrid Composer plugin is not active.
* 
* Schiocco - Copyright (c) Federico Schiocchet - Themekit
*/

(function ($) {
    var menu_open = false;
    $(document).ready(function () {
        $("body").on("click", ".menu-btn", function () {
            if (menu_open) {
                $("body > nav").removeClass("active");
                menu_open = false;
            } else {
                $("body > nav").addClass("active");
                menu_open = true;
            }
        });     

        $("body").on("click", "li.dropdown", function () {
            $(this).toggleClass("active");
        }); 

    });
}(jQuery));