// Custom JS "use strict"; var n = jQuery.noConflict(); jQuery(window).on('load', function () { jQuery(".pageloader").fadeOut("slow"); }); // footer toggle jQuery(document).ready(function () { "use strict"; FooterToggleBar(); // Append CSS styles to the head var css = ''; jQuery('head').append(css); }); function toggleFunction() { var parent = jQuery(this).parent(); parent.toggleClass('toggled-on toggled-off'); } function FooterToggleBar() { if (window.innerWidth < 720) { jQuery('footer .widget .wp-block-heading').parent().removeClass('toggled-on').addClass('toggled-off'); jQuery('footer .widget .wp-block-heading').off("click").on("click", toggleFunction); } else { jQuery('footer .widget .wp-block-heading').parent().removeClass('toggled-off').addClass('toggled-on'); jQuery('footer .widget .wp-block-heading').off("click"); } } window.addEventListener("resize", function () { FooterToggleBar(); }); // End footer toggle