/* scripts.js License: GNU General Public License v3.0 License URI: http://www.gnu.org/licenses/gpl-3.0.html Copyright: (c) 2015 Modern WP Themes */ /* ========================================================= Sf Menu ============================================================ */ jQuery(document).ready(function($){ $('.sf-menu ul').supersubs({ minWidth: 12, maxWidth: 27, extraWidth: 0 // set to 1 if lines turn over }).superfish({ delay: 200, animation: {opacity:'show', height:'show'}, speed: 'fast', autoArrows: false, dropShadows: false }); $('.carousel').carousel(); $('.widget-tab-nav a').click(function (e) { e.preventDefault(); $(this).tab('show'); }) }); /* ========================================================= Mobile Menu ============================================================ */ jQuery(document).ready(function () { jQuery('.sf-menu').meanmenu(); }); /* ========================================================= Scroll to top and Sticky Nav ============================================================ */ jQuery(document).ready(function(){ // hide #back-top first jQuery("#back-top").hide(); // fade in #back-top jQuery(function () { jQuery(window).scroll(function () { if (jQuery(this).scrollTop() > 450) { jQuery('#back-top').fadeIn(); jQuery('.header-navigation-wrapper').addClass("sticky"); } else { jQuery('#back-top').fadeOut(); jQuery('.header-navigation-wrapper').removeClass("sticky"); } }); // scroll body to 0px on click jQuery('#back-top a').click(function () { jQuery('body,html').animate({ scrollTop: 0 }, 800); return false; }); }); });