(function($){ "use strict"; var kingster_mobile = false; if( navigator.userAgent.match(/Android/i) || navigator.userAgent.match(/webOS/i) || navigator.userAgent.match(/BlackBerry/i) || navigator.userAgent.match(/iPhone/i) || navigator.userAgent.match(/iPad/i) || navigator.userAgent.match(/iPod/i) || navigator.userAgent.match(/Windows Phone/i) ){ kingster_mobile = true; }else{ kingster_mobile = false; } var kingster_display = 'desktop'; if( typeof(window.matchMedia) == 'function' ){ $(window).on('resize kingster-set-display', function(){ if( window.matchMedia('(max-width: 419px)').matches ){ kingster_display = 'mobile-portrait'; }else if( window.matchMedia('(max-width: 767px)').matches ){ kingster_display = 'mobile-landscape' }else if( window.matchMedia('(max-width: 959px)').matches ){ kingster_display = 'tablet' }else{ kingster_display = 'desktop'; } }); $(window).trigger('kingster-set-display'); }else{ $(window).on('resize kingster-set-display', function(){ if( $(window).innerWidth() <= 419 ){ kingster_display = 'mobile-portrait'; }else if( $(window).innerWidth() <= 767 ){ kingster_display = 'mobile-landscape' }else if( $(window).innerWidth() <= 959 ){ kingster_display = 'tablet' }else{ kingster_display = 'desktop'; } }); $(window).trigger('kingster-set-display'); } // ref : http://unscriptable.com/2009/03/20/debouncing-javascript-methods/ // ensure 1 is fired var kingster_debounce = function(func, threshold, execAsap){ var timeout; return function debounced(){ var obj = this, args = arguments; function delayed(){ if( !execAsap ){ func.apply(obj, args); } timeout = null; }; if( timeout ){ clearTimeout(timeout); }else if( execAsap ){ func.apply(obj, args); } timeout = setTimeout(delayed, threshold); }; } // reduce the event occurance var kingster_throttling = function(func, threshold){ var timeout; return function throttled(){ var obj = this, args = arguments; function delayed(){ func.apply(obj, args); timeout = null; }; if( !timeout ){ timeout = setTimeout(delayed, threshold); } }; } ///////////////////////// // menu handle function ///////////////////////// var kingster_sf_menu = function( menu ){ if( menu.length == 0 ) return; this.main_menu = menu; this.slide_bar = this.main_menu.children('.kingster-navigation-slide-bar'); this.slide_bar_val = { width: 0, left: 0 }; this.slide_bar_offset = '2'; this.current_menu = this.main_menu.children('.sf-menu').children('.current-menu-item, .current-menu-ancestor').children('a'); this.init(); } // kingster_sf_menu kingster_sf_menu.prototype = { init: function(){ var t = this; // sf menu mod t.sf_menu_mod(); // init superfish menu if(typeof($.fn.superfish) == 'function'){ t.main_menu.superfish({ delay: 400, speed: 'fast' }); t.sf_menu_position(); $(window).resize(kingster_debounce(function(){ t.sf_menu_position(); }, 300)); } // init the slidebar if( t.slide_bar.length > 0 ){ t.init_slidebar(); } }, // init sf_menu_mod: function(){ // create the mega menu script this.main_menu.find('.sf-mega > ul').each(function(){ var mega_content = $('
'); var mega_row = $('
'); var mega_column_size = 0; $(this).children('li').each(function(){ var column_size = parseInt($(this).attr('data-size')); if( mega_column_size + column_size <= 60 ){ mega_column_size += column_size; }else{ mega_column_size = column_size; mega_content.append(mega_row); mega_row = $('
'); } mega_row.append( $('
') .addClass('kingster-column-' + column_size) .html( $('
') .addClass($(this).attr('class')) .attr('id', $(this).attr('id')) .html($(this).html()) ) ); }); mega_content.append(mega_row); $(this).replaceWith(mega_content.html()); }); }, // sf_menu_mod sf_menu_position: function(){ if( kingster_display == 'mobile-landscape' || kingster_display == 'mobile-portrait' || kingster_display == 'tablet' ) return; // submenu of normal menu var body_wrapper = $('.kingster-body-wrapper'); var sub_normal_menu = this.main_menu.find('.sf-menu > li.kingster-normal-menu .sub-menu'); sub_normal_menu.css({display: 'block'}).removeClass('sub-menu-right'); sub_normal_menu.each(function(){ if( $(this).offset().left + $(this).width() > body_wrapper.outerWidth() ){ $(this).addClass('sub-menu-right'); } }); sub_normal_menu.css({display: 'none'}); // submenu of mega menu this.main_menu.find('.sf-menu > li.kingster-mega-menu .sf-mega').each(function(){ if( !$(this).hasClass('sf-mega-full') ){ $(this).css({ display: 'block' }); // set the position $(this).css({ right: '', 'margin-left': -(($(this).width() - $(this).parent().outerWidth()) / 2) }); // if exceed the screen if( $(this).offset().left + $(this).width() > $(window).width() ){ $(this).css({ right: 0, 'margin-left': '' }); } $(this).css({ display: 'none' }); } }); }, // sf_menu_position init_slidebar: function(){ var t = this; t.init_slidebar_pos(); $(window).load(function(){ t.init_slidebar_pos(); }); // animate slidebar if( !kingster_mobile ){ t.main_menu.children('.sf-menu').children('li').on({ mouseenter: function(){ var nav_element = $(this).children('a'); if( nav_element.length > 0 ){ t.slide_bar.animate({ width: nav_element.outerWidth() + (2 * t.slide_bar_offset), left: nav_element.position().left - t.slide_bar_offset }, { queue: false, duration: 250 }); } }, mouseleave: function(){ t.slide_bar.animate({ width: t.slide_bar_val.width, left: t.slide_bar_val.left }, { queue: false, duration: 250 }); } }); } // window resize event $(window).on('resize', function(){ t.init_slidebar_pos(); }); $(window).on('kingster-navigation-slider-bar-init', function(){ t.current_menu = t.main_menu.children('.sf-menu').children('.current-menu-item, .current-menu-ancestor').children('a'); t.animate_slidebar_pos(); }); $(window).on('kingster-navigation-slider-bar-animate', function(){ t.animate_slidebar_pos(); }); }, // init_slidebar init_slidebar_pos: function(){ if( kingster_display == 'mobile-landscape' || kingster_display == 'mobile-portrait' || kingster_display == 'tablet' ) return; var t = this; if( t.current_menu.length > 0 ){ t.slide_bar_val = { width: t.current_menu.outerWidth() + (2 * t.slide_bar_offset), left: t.current_menu.position().left - t.slide_bar_offset }; }else{ t.slide_bar_val = { width: 0, left: t.main_menu.children('ul').children('li:first-child').position().left } } t.slide_bar.css({ width: t.slide_bar_val.width, left: t.slide_bar_val.left, display: 'block' }); }, // set_slidebar_pos animate_slidebar_pos: function(){ if( kingster_display == 'mobile-landscape' || kingster_display == 'mobile-portrait' || kingster_display == 'tablet' ) return; var t = this; if( t.current_menu.length > 0 ){ t.slide_bar_val = { width: t.current_menu.outerWidth() + (2 * t.slide_bar_offset), left: t.current_menu.position().left - t.slide_bar_offset }; }else{ t.slide_bar_val = { width: 0, left: t.main_menu.children('ul').children('li:first-child').position().left } } t.slide_bar.animate({ width: t.slide_bar_val.width, left: t.slide_bar_val.left }, { queue: false, duration: 250 }); } // set_slidebar_pos }; // kingster_sf_menu.prototype ///////////////////////// // mobile menu ///////////////////////// $.fn.kingster_mobile_menu = function( args ){ var menu_button = $(this).siblings('.kingster-mm-menu-button'); var options = { navbar: { title: '' }, extensions: [ 'pagedim-black' ], }; var extensions = { offCanvas: { pageNodetype: '.kingster-body-outer-wrapper' } }; // remove the wrap for submenu $(this).find('a[href="#"]').each(function(){ var content = $(this).html(); $('').html(content).insertBefore($(this)); $(this).remove(); }); if( $(this).attr('data-slide') ){ var html_class = 'kingster-mmenu-' + $(this).attr('data-slide'); $('html').addClass(html_class); options.offCanvas = { position : $(this).attr('data-slide') }; } $(this).mmenu(options, extensions); var menu_api = $(this).data('mmenu'); $(this).find('a').not('.mm-next, .mm-prev').on('click', function(){ menu_api.close(); }); $(this).find('.mmenu-custom-close').on('click', function(){ menu_api.close(); }); // $(window).resize(function(){ // menu_api.close(); // }); // add class active to button menu_api.bind('open', function($panel){ menu_button.addClass('kingster-active'); }); menu_api.bind('close', function($panel){ menu_button.removeClass('kingster-active'); }); } ///////////////////////// // overlay menu ///////////////////////// var kingster_overlay_menu = function( menu ){ this.menu = menu; this.menu_button = menu.children('.kingster-overlay-menu-icon'); this.menu_content = menu.children('.kingster-overlay-menu-content'); this.menu_close = this.menu_content.children('.kingster-overlay-menu-close'); this.init(); } kingster_overlay_menu.prototype = { init: function(){ var t = this; // add transition delay for each menu var delay_count = 0; t.menu_content.appendTo('body'); t.menu_content.find('ul.menu > li').each(function(){ $(this).css('transition-delay', (delay_count * 150) + 'ms'); delay_count++; }); // bind the menu button t.menu_button.on('click', function(){ $(this).addClass('kingster-active'); t.menu_content.fadeIn(200, function(){ $(this).addClass('kingster-active'); }); return false; }); // bind the menu close button t.menu_close.on('click', function(){ t.menu_button.removeClass('kingster-active'); t.menu_content.fadeOut(400, function(){ $(this).removeClass('kingster-active'); }); t.menu_content.find('.sub-menu').slideUp(200).removeClass('kingster-active'); return false; }); // menu item click t.menu_content.find('a').on('click', function(e){ var sub_menu = $(this).siblings('.sub-menu'); if( sub_menu.length > 0 ){ if( !sub_menu.hasClass('kingster-active') ){ var prev_active = sub_menu.closest('li').siblings().find('.sub-menu.kingster-active'); if( prev_active.length > 0 ){ prev_active.removeClass('kingster-active').slideUp(150); sub_menu.delay(150).slideDown(400, 'easeOutQuart').addClass('kingster-active'); }else{ sub_menu.slideDown(400, 'easeOutQuart').addClass('kingster-active'); } $(this).addClass('kingster-no-preload'); return false; }else{ $(this).removeClass('kingster-no-preload'); } }else{ t.menu_close.trigger('click'); } }); } }; // kingster_overlay_menu.prototype ///////////////////////// // header side navigation ///////////////////////// var kingster_header_side_nav = function( side_nav ){ if( side_nav.length == 0 ) return; this.prev_scroll = 0; this.side_nav = side_nav; this.side_nav_content = side_nav.children(); this.init(); } // kingster_header_side_nav kingster_header_side_nav.prototype = { init: function(){ var t = this; t.init_nav_bar_element(); $(window).resize(function(){ t.init_nav_bar_element(); }); $(window).scroll(function(){ if( kingster_display == 'mobile-landscape' || kingster_display == 'mobile-portrait' || kingster_display == 'tablet' ) return; // if content longer than screen height if( t.side_nav.hasClass('kingster-allow-slide') ){ var admin_bar_height = parseInt($('html').css('margin-top')); var scroll_down = ($(window).scrollTop() > t.prev_scroll); t.prev_scroll = $(window).scrollTop(); // if scroll down if( scroll_down ){ if( !t.side_nav.hasClass('kingster-fix-bottom') ){ if( t.side_nav.hasClass('kingster-fix-top') ){ t.side_nav.css('top', t.side_nav.offset().top); t.side_nav.removeClass('kingster-fix-top'); }else if( $(window).height() + $(window).scrollTop() > t.side_nav_content.offset().top + t.side_nav_content.outerHeight() ){ if( !t.side_nav.hasClass('kingster-fix-bottom') ){ t.side_nav.addClass('kingster-fix-bottom'); t.side_nav.css('top', ''); } } } // if scroll up }else{ if( !t.side_nav.hasClass('kingster-fix-top') ){ if( t.side_nav.hasClass('kingster-fix-bottom') ){ var top_pos = $(window).scrollTop() + ($(window).height() - admin_bar_height) - t.side_nav_content.outerHeight(); t.side_nav.css('top', top_pos); t.side_nav.removeClass('kingster-fix-bottom'); }else if( $(window).scrollTop() + admin_bar_height < t.side_nav_content.offset().top ){ if( !t.side_nav.hasClass('kingster-fix-top') ){ t.side_nav.addClass('kingster-fix-top'); t.side_nav.css('top', ''); } } } } } }); }, init_nav_bar_element: function(){ if( kingster_display == 'mobile-landscape' || kingster_display == 'mobile-portrait' || kingster_display == 'tablet' ) return; var t = this; var middle_pos = t.side_nav_content.children('.kingster-pos-middle').addClass('kingster-active'); var bottom_pos = t.side_nav_content.children('.kingster-pos-bottom').addClass('kingster-active'); // remove all additional space t.side_nav_content.children('.kingster-pre-spaces').remove(); // add class depends on the screen size/content if( $(window).height() < t.side_nav_content.height() ){ t.side_nav.addClass('kingster-allow-slide'); }else{ t.side_nav.removeClass('kingster-allow-slide kingster-fix-top kingster-fix-bottom').css('top', ''); // set the middle position if( t.side_nav.hasClass('kingster-style-middle') ){ middle_pos.each(function(){ var top_padding = parseInt($(this).css('padding-top')); var prespace = ((t.side_nav.height() - (t.side_nav_content.height() - top_padding)) / 2) - top_padding; if( prespace > 0 ){ $('
').css('height', prespace).insertBefore($(this)); } }); } // set the bottom position bottom_pos.each(function(){ var prespace = t.side_nav.height() - t.side_nav_content.height(); if( prespace > 0 ){ $('
').css('height', prespace).insertBefore($(this)); } }); } } }; // kingster_sf_menu.prototype ///////////////////////// // anchoring ///////////////////////// var kingster_anchor = function(){ this.anchor_link = $('a[href*="#"]').not('[href="#"]').filter(function(){ // for mm-menu plugin if( $(this).is('.kingster-mm-menu-button, .mm-next, .mm-prev, .mm-title, .gdlr-core-ilightbox') ){ return false; } // for additional plugins if( $(this).is('.fbx-btn-transition') ){ return false; } // for woocommerce if( $(this).parent('.description_tab, .reviews_tab').length || $(this).not('[class^="kingster"]').closest('.woocommerce').length ){ return false; } return true; }); if( this.anchor_link.length ){ this.menu_anchor = $('#kingster-main-menu, #kingster-bullet-anchor'); this.home_anchor = this.menu_anchor.find('ul.sf-menu > li.current-menu-item > a, ul.sf-menu > li.current-menu-ancestor > a, .kingster-bullet-anchor-link.current-menu-item'); this.init(); } } kingster_anchor.prototype = { init: function(){ var t = this; t.animate_anchor(); t.scroll_section(); // init bullet anchor height t.menu_anchor.filter('#kingster-bullet-anchor').each(function(){ $(this).css('margin-top', - t.menu_anchor.height() / 2).addClass('kingster-init'); }); // initialize if the page hash exists // wait for all element to initialize ( eg. flexslider ) var url_hash = window.location.hash; if( url_hash ){ setTimeout(function(){ var current_menu = t.menu_anchor.find('a[href*="' + url_hash + '"]'); if( !current_menu.is('.current-menu-item, .current-menu-ancestor') ){ current_menu.addClass('current-menu-item').siblings().removeClass('current-menu-item current-menu-ancestor'); $(window).trigger('kingster-navigation-slider-bar-init'); } t.scroll_to(url_hash, false, 300); }, 500); } }, animate_anchor: function(){ var t = this; // home anchor t.home_anchor.on('click', function(){ if( window.location.href == this.href ){ $('html, body').animate({ scrollTop: 0 }, { duration: 1500, easing: 'easeOutQuart' }); return false; } }); // normal anchor t.anchor_link.on('click', function() { if( location.hostname == this.hostname && location.pathname.replace(/^\//,'') == this.pathname.replace(/^\//,'') ){ return t.scroll_to(this.hash, true); } }); }, // animate anchor scroll_to: function( hash, redirect, duration ){ // start scrolling if( hash == '#kingster-top-anchor' ){ var scroll_position = 0; }else{ var target = $(hash); if( target.length ){ var scroll_position = target.offset().top; } } if( typeof(scroll_position) != 'undefined' ){ // offset for wordpress admin bar scroll_position = scroll_position - parseInt($('html').css('margin-top')); // offset for fixed nav bar if( kingster_display == 'mobile-portrait' || kingster_display == 'mobile-landscape' ){ scroll_position = scroll_position - 75; }else if( typeof(window.kingster_anchor_offset) != 'undefined' ){ scroll_position = scroll_position - parseInt(window.kingster_anchor_offset); } if( scroll_position < 0 ) scroll_position = 0; $('html, body').animate({ scrollTop: scroll_position }, { duration: 1500, easing: 'easeOutQuart', queue: false }); return false; }else if( redirect ){ window.location.href = kingster_script_core.home_url + hash; return false; } }, // scroll to scroll_section: function(){ var t = this; // have anchor in anchor menu var menu_link_anchor = this.menu_anchor.find('a[href*="#"]').not('[href="#"]'); if( !menu_link_anchor.length ){ return; } // get anchor section var home_anchor_section = $('#kingster-page-wrapper'); var anchor_section = home_anchor_section.find('div[id], section[id]'); if( !anchor_section.length ){ return; } // add data for faster query menu_link_anchor.each(function(){ if( $(this).closest('.sub-menu').length == 0 && $(this.hash).length ){ $(this).attr('data-anchor', this.hash); } }); // check section on scroll event $(window).scroll(function(){ if( kingster_display == 'mobile-landscape' || kingster_display == 'mobile-portrait' || kingster_display == 'tablet' ) return; if( t.home_anchor.length && $(window).scrollTop() <= home_anchor_section.offset().top ){ t.home_anchor.each(function(){ if( $(this).hasClass('kingster-bullet-anchor-link') ){ $(this).addClass('current-menu-item').siblings().removeClass('current-menu-item'); $(this).parent('.kingster-bullet-anchor').attr('data-anchor-section', 'kingster-home'); }else if( !$(this).parent('.current-menu-item, .current-menu-ancestor').length ){ $(this).parent().addClass('current-menu-item').siblings().removeClass('current-menu-item current-menu-ancestor'); $(window).trigger('kingster-navigation-slider-bar-init'); } }); }else{ var section_position = $(window).scrollTop() + ($(window).height() / 2); anchor_section.each(function(){ if( $(this).css('display') == 'none' ) return; var top_offset_pos = $(this).offset().top; if( (section_position > top_offset_pos) && (section_position < top_offset_pos + $(this).outerHeight()) ){ var section_id = $(this).attr('id'); menu_link_anchor.filter('[data-anchor="#' + section_id + '"]').each(function(){ if( $(this).hasClass('kingster-bullet-anchor-link') ){ $(this).addClass('current-menu-item').siblings().removeClass('current-menu-item'); $(this).parent('.kingster-bullet-anchor').attr('data-anchor-section', section_id); }else if( $(this).parent('li.menu-item').length && !$(this).parent('li.menu-item').is('.current-menu-item, .current-menu-ancestor') ){ $(this).parent('li.menu-item').addClass('current-menu-item').siblings().removeClass('current-menu-item current-menu-ancestor'); $(window).trigger('kingster-navigation-slider-bar-init'); } }); return false; } }); } }); } // scroll section }; var kingster_sticky_navigation = function(){ var t = this; // get navigation t.sticky_nav = $('.kingster-with-sticky-navigation .kingster-sticky-navigation'); t.mobile_menu = $('#kingster-mobile-header'); // set the anchor offset if( t.sticky_nav.hasClass('kingster-sticky-navigation-height') ){ window.kingster_anchor_offset = t.sticky_nav.outerHeight(); $(window).resize(function(){ window.kingster_anchor_offset = t.sticky_nav.outerHeight(); }); }else if( t.sticky_nav.attr('data-navigation-offset') ){ window.kingster_anchor_offset = parseInt(t.sticky_nav.attr('data-navigation-offset')); }else if( t.sticky_nav.length ){ window.kingster_anchor_offset = 75; } // init the sticky navigation if( t.sticky_nav.length ){ t.init(); } if( t.mobile_menu.hasClass('kingster-sticky-mobile-navigation') ){ t.style_mobile_slide(); $(window).trigger('kingster-set-sticky-mobile-navigation'); } } kingster_sticky_navigation.prototype = { init: function(){ var t = this; if( t.sticky_nav.hasClass('kingster-style-fixed') ){ t.style_fixed(); }else if( t.sticky_nav.hasClass('kingster-style-slide') ){ t.style_slide(); } $(window).trigger('kingster-set-sticky-navigation'); }, style_fixed: function(){ var t = this; var placeholder = $('
'); $(window).on('scroll kingster-set-sticky-navigation', function(){ if( kingster_display == 'mobile-landscape' || kingster_display == 'mobile-portrait' || kingster_display == 'tablet' ) return; var page_offset = parseInt($('html').css('margin-top')); if( !t.sticky_nav.hasClass('kingster-fixed-navigation') ){ if( $(window).scrollTop() + page_offset > t.sticky_nav.offset().top ){ if( !t.sticky_nav.hasClass('kingster-without-placeholder') ){ placeholder.height(t.sticky_nav.outerHeight()); } placeholder.insertAfter(t.sticky_nav); $('body').append(t.sticky_nav); t.sticky_nav.addClass('kingster-fixed-navigation'); setTimeout(function(){ t.sticky_nav.addClass('kingster-animate-fixed-navigation'); }, 10); setTimeout(function(){ t.sticky_nav.css('height', ''); $(window).trigger('kingster-navigation-slider-bar-animate'); }, 200); } }else{ if( $(window).scrollTop() + page_offset <= placeholder.offset().top ){ if( !t.sticky_nav.hasClass('kingster-without-placeholder') ){ t.sticky_nav.height(placeholder.height()); } t.sticky_nav.insertBefore(placeholder); t.sticky_nav.removeClass('kingster-fixed-navigation'); placeholder.remove(); setTimeout(function(){ t.sticky_nav.removeClass('kingster-animate-fixed-navigation'); }, 10); setTimeout(function(){ t.sticky_nav.css('height', ''); $(window).trigger('kingster-navigation-slider-bar-animate'); }, 200); } } }); }, // style_fixed style_slide: function(){ var t = this; var placeholder = $('
'); $(window).on('scroll kingster-set-sticky-navigation', function(){ if( kingster_display == 'mobile-landscape' || kingster_display == 'mobile-portrait' || kingster_display == 'tablet' ){ return; } var page_offset = parseInt($('html').css('margin-top')); if( !t.sticky_nav.hasClass('kingster-fixed-navigation') ){ if( $(window).scrollTop() + page_offset > t.sticky_nav.offset().top + t.sticky_nav.outerHeight() + 200 ){ if( !t.sticky_nav.hasClass('kingster-without-placeholder') ){ placeholder.height(t.sticky_nav.outerHeight()); } placeholder.insertAfter(t.sticky_nav); t.sticky_nav.css('display', 'none'); $('body').append(t.sticky_nav); t.sticky_nav.addClass('kingster-fixed-navigation kingster-animate-fixed-navigation'); t.sticky_nav.slideDown(200); $(window).trigger('kingster-navigation-slider-bar-animate'); } }else{ if( $(window).scrollTop() + page_offset <= placeholder.offset().top + placeholder.height() + 200 ){ var clone = t.sticky_nav.clone(); clone.insertAfter(t.sticky_nav); clone.slideUp(200, function(){ $(this).remove(); }); t.sticky_nav.insertBefore(placeholder); placeholder.remove(); t.sticky_nav.removeClass('kingster-fixed-navigation kingster-animate-fixed-navigation'); t.sticky_nav.css('display', 'block'); $(window).trigger('kingster-navigation-slider-bar-animate'); } } }); }, // style_slide style_mobile_slide: function(){ var t = this; var placeholder = $('
'); $(window).on('scroll kingster-set-sticky-mobile-navigation', function(){ if( kingster_display == 'mobile-landscape' || kingster_display == 'mobile-portrait' || kingster_display == 'tablet' ){ var page_offset = parseInt($('html').css('margin-top')); if( !t.mobile_menu.hasClass('kingster-fixed-navigation') ){ if( $(window).scrollTop() + page_offset > t.mobile_menu.offset().top + t.mobile_menu.outerHeight() + 200 ){ placeholder.height(t.mobile_menu.outerHeight()).insertAfter(t.mobile_menu); $('body').append(t.mobile_menu); t.mobile_menu.addClass('kingster-fixed-navigation'); t.mobile_menu.css('display', 'none').slideDown(200); } }else{ if( $(window).scrollTop() + page_offset <= placeholder.offset().top + placeholder.height() + 200 ){ var clone = t.mobile_menu.clone(); clone.insertAfter(t.mobile_menu); clone.slideUp(200, function(){ $(this).remove(); }); t.mobile_menu.insertBefore(placeholder); placeholder.remove(); t.mobile_menu.removeClass('kingster-fixed-navigation'); t.mobile_menu.css('display', 'block'); } } } }); }, // style_slide }; var kingster_font_resize = function(){ this.heading_font = $('h1, h2, h3, h4, h5, h6'); this.init(); } kingster_font_resize.prototype = { init: function(){ var t = this; t.resize(); $(window).on('resize', kingster_throttling(function(){ t.resize(); }, 100)); }, resize: function(){ var t = this; if( kingster_display == 'mobile-landscape' || kingster_display == 'mobile-portrait' ){ t.heading_font.each(function(){ if( parseInt($(this).css('font-size')) > 40 ){ if( !$(this).attr('data-orig-font') ){ $(this).attr('data-orig-font', $(this).css('font-size')); } $(this).css('font-size', '40px'); } }); // return font to normal }else{ t.heading_font.filter('[data-orig-font]').each(function(){ $(this).css('font-size', $(this).attr('data-orig-font')); }); } } }; $.fn.kingster_tab = function(){ var elem = $(this); elem.find('.gdlr-core-tab-item-title').on('click', function(){ var tab_id = $(this).attr('data-tab-id'); var tab_item_wrap = $(this).closest('.gdlr-core-tab-item-wrap'); tab_item_wrap.siblings('.gdlr-core-tab-item-content-image-wrap').each(function(){ var active_tab = $(this).children('[data-tab-id="' + tab_id + '"]'); if( active_tab.length ){ $(this).css('width', ''); $(this).css('height', tab_item_wrap.outerHeight()); active_tab.siblings().removeClass('gdlr-core-active'); active_tab.addClass('gdlr-core-active'); }else{ $(this).css('width', '0px'); $(this).children().removeClass('gdlr-core-active'); // .hide(); } }); }); elem.find('.gdlr-core-tab-item-content-image-wrap').each(function(){ $(this).css('height', $(this).siblings('.gdlr-core-tab-item-wrap').outerHeight()); }); $(window).on('load resize', function(){ elem.find('.gdlr-core-tab-item-content-image-wrap').each(function(){ $(this).css('height', $(this).siblings('.gdlr-core-tab-item-wrap').outerHeight()); }); }); } //////////////////////////////// // starting running the script //////////////////////////////// $(document).ready(function(){ // resize font on mobile new kingster_font_resize(); // init main navigation menu $('#kingster-main-menu, #kingster-right-menu, #kingster-mobile-menu, #kingster-top-bar-menu').each(function(){ if( $(this).hasClass('kingster-overlay-menu') ){ new kingster_overlay_menu( $(this) ); }else if( $(this).hasClass('kingster-mm-menu-wrap') ){ $(this).kingster_mobile_menu(); }else{ new kingster_sf_menu( $(this) ); } }); $('#kingster-top-search, #kingster-mobile-top-search').each(function(){ var search_wrap = $(this).siblings('.kingster-top-search-wrap'); search_wrap.appendTo('body'); // bind click button $(this).on('click', function(){ search_wrap.fadeIn(200, function(){ $(this).addClass('kingster-active'); }); }); // bind close button search_wrap.find('.kingster-top-search-close').on('click', function(){ search_wrap.fadeOut(200, function(){ $(this).addClass('kingster-active'); }); }); // bind search button search_wrap.find('.search-submit').on('click', function(){ if( search_wrap.find('.search-field').val().length == 0 ){ return false; } }); }); $('#kingster-main-menu-cart, #kingster-mobile-menu-cart').each(function(){ $(this).on({ mouseenter: function(){ $(this).addClass('kingster-active kingster-animating'); }, mouseleave: function(){ var menu_cart = $(this); menu_cart.removeClass('kingster-active'); setTimeout(function(){ menu_cart.removeClass('kingster-animating'); }, 400) } }); }); // additional space for header transparent $('.kingster-header-boxed-wrap, .kingster-header-background-transparent, .kingster-navigation-bar-wrap.kingster-style-transparent').each(function(){ var header_transparent = $(this); var header_transparent_sub = $('.kingster-header-transparent-substitute'); header_transparent_sub.height(header_transparent.outerHeight()); $(window).on('load resize', function(){ header_transparent_sub.height(header_transparent.outerHeight()); }); }); // full screen for 404 not found $('body.error404, body.search-no-results').each(function(){ var wrap = $(this).find('#kingster-full-no-header-wrap'); var body_wrap_offset = parseInt($(this).children('.kingster-body-outer-wrapper').children('.kingster-body-wrapper').css('margin-bottom')); var padding = ($(window).height() - wrap.offset().top - wrap.outerHeight() - body_wrap_offset) / 2; if( padding > 0 ){ wrap.css({ 'padding-top': padding, 'padding-bottom': padding }); } $(window).on('load resize', function(){ wrap.css({ 'padding-top': 0, 'padding-bottom': 0 }); padding = ($(window).height() - wrap.offset().top - wrap.outerHeight() - body_wrap_offset) / 2; if( padding > 0 ){ wrap.css({ 'padding-top': padding, 'padding-bottom': padding }); } }); }); // back to top button var back_to_top = $('#kingster-footer-back-to-top-button'); if( back_to_top.length ){ $(window).on('scroll', function(){ if( $(window).scrollTop() > 300 ){ back_to_top.addClass('kingster-scrolled'); }else{ back_to_top.removeClass('kingster-scrolled'); } }); } // page preload $('body').children('#kingster-page-preload').each(function(){ var page_preload = $(this); var animation_time = parseInt(page_preload.attr('data-animation-time')); $('a[href]').not('[href^="#"], [target="_blank"], .gdlr-core-js, .strip, .sf-with-ul, .remove, .ajax_add_to_cart').on('click', function(e){ if( e.which != 1 || $(this).hasClass('kingster-no-preload') || e.ctrlKey ) return; if( $(this).closest('.tribe-events-nav-pagination').length ) return; if( window.location.href != this.href ){ page_preload.addClass('kingster-out').fadeIn(animation_time); } }); $(window).load(function(){ page_preload.fadeOut(animation_time); }); }); // single nav style 2 sync height $('body.kingster-blog-style-2 .kingster-single-nav-area').each(function(){ var max_height; var single_nav_2 = $(this).children(); max_height = 0; single_nav_2.css('min-height', '0px'); single_nav_2.each(function(){ if( max_height < $(this).outerHeight() ){ max_height = $(this).outerHeight(); } }); single_nav_2.css('min-height', max_height); $(window).resize(function(){ max_height = 0; single_nav_2.css('min-height', '0px'); single_nav_2.each(function(){ if( max_height < $(this).outerHeight() ){ max_height = $(this).outerHeight(); } }); single_nav_2.css('min-height', max_height); }); }); // page builder $('.gdlr-core-tab-item').kingster_tab(); }); // fix back button for preload $(window).on('pageshow', function(event) { if( event.originalEvent.persisted ){ $('body').children('#kingster-page-preload').each(function(){ $(this).fadeOut(400); }); } }); // $(window).on('beforeunload', function(){ // $('body').children('#kingster-page-preload').each(function(){ // $(this).fadeOut(400); // }); // }); $(window).load(function(){ // fixed footer $('#kingster-fixed-footer').each(function(){ var fixed_footer = $(this); var placeholder = $(''); placeholder.insertBefore(fixed_footer); placeholder.height(fixed_footer.outerHeight()); $('body').css('min-height', $(window).height() - parseInt($('html').css('margin-top'))); // for safari $(window).resize(function(){ placeholder.height(fixed_footer.outerHeight()); $('body').css('min-height', $(window).height() - parseInt($('html').css('margin-top'))); }); }); // side navigation bar new kingster_header_side_nav( $('#kingster-header-side-nav') ); // sticky navigation new kingster_sticky_navigation(); // anchoring new kingster_anchor(); }); })(jQuery); /***********/ /* Plugins */ /***********/ /* * jQuery mmenu v5.6.1 */ !function(e){function t(){e[n].glbl||(r={$wndw:e(window),$docu:e(document),$html:e("html"),$body:e("body")},i={},a={},o={},e.each([i,a,o],function(e,t){t.add=function(e){e=e.split(" ");for(var n=0,s=e.length;s>n;n++)t[e[n]]=t.mm(e[n])}}),i.mm=function(e){return"mm-"+e},i.add("wrapper menu panels panel nopanel current highest opened subopened navbar hasnavbar title btn prev next listview nolistview inset vertical selected divider spacer hidden fullsubopen"),i.umm=function(e){return"mm-"==e.slice(0,3)&&(e=e.slice(3)),e},a.mm=function(e){return"mm-"+e},a.add("parent sub"),o.mm=function(e){return e+".mm"},o.add("transitionend webkitTransitionEnd click scroll keydown mousedown mouseup touchstart touchmove touchend orientationchange"),e[n]._c=i,e[n]._d=a,e[n]._e=o,e[n].glbl=r)}var n="mmenu",s="5.6.1";if(!(e[n]&&e[n].version>s)){e[n]=function(e,t,n){this.$menu=e,this._api=["bind","init","update","setSelected","getInstance","openPanel","closePanel","closeAllPanels"],this.opts=t,this.conf=n,this.vars={},this.cbck={},"function"==typeof this.___deprecated&&this.___deprecated(),this._initMenu(),this._initAnchors();var s=this.$pnls.children();return this._initAddons(),this.init(s),"function"==typeof this.___debug&&this.___debug(),this},e[n].version=s,e[n].addons={},e[n].uniqueId=0,e[n].defaults={extensions:[],navbar:{add:!0,title:"Menu",titleLink:"panel"},onClick:{setSelected:!0},slidingSubmenus:!0},e[n].configuration={classNames:{divider:"Divider",inset:"Inset",panel:"Panel",selected:"Selected",spacer:"Spacer",vertical:"Vertical"},clone:!1,openingInterval:25,panelNodetype:"ul, ol, div",transitionDuration:400},e[n].prototype={init:function(e){e=e.not("."+i.nopanel),e=this._initPanels(e),this.trigger("init",e),this.trigger("update")},update:function(){this.trigger("update")},setSelected:function(e){this.$menu.find("."+i.listview).children().removeClass(i.selected),e.addClass(i.selected),this.trigger("setSelected",e)},openPanel:function(t){var s=t.parent(),a=this;if(s.hasClass(i.vertical)){var o=s.parents("."+i.subopened);if(o.length)return void this.openPanel(o.first());s.addClass(i.opened),this.trigger("openPanel",t),this.trigger("openingPanel",t),this.trigger("openedPanel",t)}else{if(t.hasClass(i.current))return;var r=this.$pnls.children("."+i.panel),l=r.filter("."+i.current);r.removeClass(i.highest).removeClass(i.current).not(t).not(l).not("."+i.vertical).addClass(i.hidden),e[n].support.csstransitions||l.addClass(i.hidden),t.hasClass(i.opened)?t.nextAll("."+i.opened).addClass(i.highest).removeClass(i.opened).removeClass(i.subopened):(t.addClass(i.highest),l.addClass(i.subopened)),t.removeClass(i.hidden).addClass(i.current),a.trigger("openPanel",t),setTimeout(function(){t.removeClass(i.subopened).addClass(i.opened),a.trigger("openingPanel",t),a.__transitionend(t,function(){a.trigger("openedPanel",t)},a.conf.transitionDuration)},this.conf.openingInterval)}},closePanel:function(e){var t=e.parent();t.hasClass(i.vertical)&&(t.removeClass(i.opened),this.trigger("closePanel",e),this.trigger("closingPanel",e),this.trigger("closedPanel",e))},closeAllPanels:function(){this.$menu.find("."+i.listview).children().removeClass(i.selected).filter("."+i.vertical).removeClass(i.opened);var e=this.$pnls.children("."+i.panel),t=e.first();this.$pnls.children("."+i.panel).not(t).removeClass(i.subopened).removeClass(i.opened).removeClass(i.current).removeClass(i.highest).addClass(i.hidden),this.openPanel(t)},togglePanel:function(e){var t=e.parent();t.hasClass(i.vertical)&&this[t.hasClass(i.opened)?"closePanel":"openPanel"](e)},getInstance:function(){return this},bind:function(e,t){this.cbck[e]=this.cbck[e]||[],this.cbck[e].push(t)},trigger:function(){var e=this,t=Array.prototype.slice.call(arguments),n=t.shift();if(this.cbck[n])for(var s=0,i=this.cbck[n].length;i>s;s++)this.cbck[n][s].apply(e,t)},_initMenu:function(){this.$menu.attr("id",this.$menu.attr("id")||this.__getUniqueId()),this.conf.clone&&(this.$menu=this.$menu.clone(!0),this.$menu.add(this.$menu.find("[id]")).filter("[id]").each(function(){e(this).attr("id",i.mm(e(this).attr("id")))})),this.$menu.contents().each(function(){3==e(this)[0].nodeType&&e(this).remove()}),this.$pnls=e('
').append(this.$menu.children(this.conf.panelNodetype)).prependTo(this.$menu),this.$menu.parent().addClass(i.wrapper);var t=[i.menu];this.opts.slidingSubmenus||t.push(i.vertical),this.opts.extensions=this.opts.extensions.length?"mm-"+this.opts.extensions.join(" mm-"):"",this.opts.extensions&&t.push(this.opts.extensions),this.$menu.addClass(t.join(" "))},_initPanels:function(t){var n=this,s=this.__findAddBack(t,"ul, ol");this.__refactorClass(s,this.conf.classNames.inset,"inset").addClass(i.nolistview+" "+i.nopanel),s.not("."+i.nolistview).addClass(i.listview);var o=this.__findAddBack(t,"."+i.listview).children();this.__refactorClass(o,this.conf.classNames.selected,"selected"),this.__refactorClass(o,this.conf.classNames.divider,"divider"),this.__refactorClass(o,this.conf.classNames.spacer,"spacer"),this.__refactorClass(this.__findAddBack(t,"."+this.conf.classNames.panel),this.conf.classNames.panel,"panel");var r=e(),l=t.add(t.find("."+i.panel)).add(this.__findAddBack(t,"."+i.listview).children().children(this.conf.panelNodetype)).not("."+i.nopanel);this.__refactorClass(l,this.conf.classNames.vertical,"vertical"),this.opts.slidingSubmenus||l.addClass(i.vertical),l.each(function(){var t=e(this),s=t;t.is("ul, ol")?(t.wrap('
'),s=t.parent()):s.addClass(i.panel);var a=t.attr("id");t.removeAttr("id"),s.attr("id",a||n.__getUniqueId()),t.hasClass(i.vertical)&&(t.removeClass(n.conf.classNames.vertical),s.add(s.parent()).addClass(i.vertical)),r=r.add(s)});var d=e("."+i.panel,this.$menu);r.each(function(t){var s,o,r=e(this),l=r.parent(),d=l.children("a, span").first();if(l.is("."+i.panels)||(l.data(a.sub,r),r.data(a.parent,l)),l.children("."+i.next).length||l.parent().is("."+i.listview)&&(s=r.attr("id"),o=e('').insertBefore(d),d.is("span")&&o.addClass(i.fullsubopen)),!r.children("."+i.navbar).length&&!l.hasClass(i.vertical)){l.parent().is("."+i.listview)?l=l.closest("."+i.panel):(d=l.closest("."+i.panel).find('a[href="#'+r.attr("id")+'"]').first(),l=d.closest("."+i.panel));var c=e('
');if(l.length){switch(s=l.attr("id"),n.opts.navbar.titleLink){case"anchor":_url=d.attr("href");break;case"panel":case"parent":_url="#"+s;break;default:_url=!1}c.append('').append(e('").text(d.text())).prependTo(r),n.opts.navbar.add&&r.addClass(i.hasnavbar)}else n.opts.navbar.title&&(c.append(''+n.opts.navbar.title+"").prependTo(r),n.opts.navbar.add&&r.addClass(i.hasnavbar))}});var c=this.__findAddBack(t,"."+i.listview).children("."+i.selected).removeClass(i.selected).last().addClass(i.selected);c.add(c.parentsUntil("."+i.menu,"li")).filter("."+i.vertical).addClass(i.opened).end().each(function(){e(this).parentsUntil("."+i.menu,"."+i.panel).not("."+i.vertical).first().addClass(i.opened).parentsUntil("."+i.menu,"."+i.panel).not("."+i.vertical).first().addClass(i.opened).addClass(i.subopened)}),c.children("."+i.panel).not("."+i.vertical).addClass(i.opened).parentsUntil("."+i.menu,"."+i.panel).not("."+i.vertical).first().addClass(i.opened).addClass(i.subopened);var p=d.filter("."+i.opened);return p.length||(p=r.first()),p.addClass(i.opened).last().addClass(i.current),r.not("."+i.vertical).not(p.last()).addClass(i.hidden).end().filter(function(){return!e(this).parent().hasClass(i.panels)}).appendTo(this.$pnls),r},_initAnchors:function(){var t=this;r.$body.on(o.click+"-oncanvas","a[href]",function(s){var a=e(this),o=!1,r=t.$menu.find(a).length;for(var l in e[n].addons)if(e[n].addons[l].clickAnchor.call(t,a,r)){o=!0;break}var d=a.attr("href");if(!o&&r&&d.length>1&&"#"==d.slice(0,1))try{var c=e(d,t.$menu);c.is("."+i.panel)&&(o=!0,t[a.parent().hasClass(i.vertical)?"togglePanel":"openPanel"](c))}catch(p){}if(o&&s.preventDefault(),!o&&r&&a.is("."+i.listview+" > li > a")&&!a.is('[rel="external"]')&&!a.is('[target="_blank"]')){t.__valueOrFn(t.opts.onClick.setSelected,a)&&t.setSelected(e(s.target).parent());var h=t.__valueOrFn(t.opts.onClick.preventDefault,a,"#"==d.slice(0,1));h&&s.preventDefault(),t.__valueOrFn(t.opts.onClick.close,a,h)&&t.close()}})},_initAddons:function(){var t;for(t in e[n].addons)e[n].addons[t].add.call(this),e[n].addons[t].add=function(){};for(t in e[n].addons)e[n].addons[t].setup.call(this)},_getOriginalMenuId:function(){var e=this.$menu.attr("id");return e&&e.length&&this.conf.clone&&(e=i.umm(e)),e},__api:function(){var t=this,n={};return e.each(this._api,function(e){var s=this;n[s]=function(){var e=t[s].apply(t,arguments);return"undefined"==typeof e?n:e}}),n},__valueOrFn:function(e,t,n){return"function"==typeof e?e.call(t[0]):"undefined"==typeof e&&"undefined"!=typeof n?n:e},__refactorClass:function(e,t,n){return e.filter("."+t).removeClass(t).addClass(i[n])},__findAddBack:function(e,t){return e.find(t).add(e.filter(t))},__filterListItems:function(e){return e.not("."+i.divider).not("."+i.hidden)},__transitionend:function(e,t,n){var s=!1,i=function(){s||t.call(e[0]),s=!0};e.one(o.transitionend,i),e.one(o.webkitTransitionEnd,i),setTimeout(i,1.1*n)},__getUniqueId:function(){return i.mm(e[n].uniqueId++)}},e.fn[n]=function(s,i){return t(),s=e.extend(!0,{},e[n].defaults,s),i=e.extend(!0,{},e[n].configuration,i),this.each(function(){var t=e(this);if(!t.data(n)){var a=new e[n](t,s,i);a.$menu.data(n,a.__api())}})},e[n].support={touch:"ontouchstart"in window||navigator.msMaxTouchPoints||!1,csstransitions:function(){if("undefined"!=typeof Modernizr&&"undefined"!=typeof Modernizr.csstransitions)return Modernizr.csstransitions;var e=document.body||document.documentElement,t=e.style,n="transition";if("string"==typeof t[n])return!0;var s=["Moz","webkit","Webkit","Khtml","O","ms"];n=n.charAt(0).toUpperCase()+n.substr(1);for(var i=0;i1&&a.wrapPageIfNeeded&&(t=t.wrapAll("<"+this.conf[n].pageNodetype+" />").parent())),t.each(function(){e(this).attr("id",e(this).attr("id")||i.__getUniqueId())}),t.addClass(s.page+" "+s.slideout),o.$page=t,this.trigger("setPage",t)},e[t].prototype["_initWindow_"+n]=function(){o.$wndw.off(a.keydown+"-"+n).on(a.keydown+"-"+n,function(e){return o.$html.hasClass(s.opened)&&9==e.keyCode?(e.preventDefault(),!1):void 0});var e=0;o.$wndw.off(a.resize+"-"+n).on(a.resize+"-"+n,function(t,n){if(1==o.$page.length&&(n||o.$html.hasClass(s.opened))){var i=o.$wndw.height();(n||i!=e)&&(e=i,o.$page.css("minHeight",i))}})},e[t].prototype._initBlocker=function(){var t=this;this.opts[n].blockUI&&(o.$blck||(o.$blck=e('
')),o.$blck.appendTo(o.$body).off(a.touchstart+"-"+n+" "+a.touchmove+"-"+n).on(a.touchstart+"-"+n+" "+a.touchmove+"-"+n,function(e){e.preventDefault(),e.stopPropagation(),o.$blck.trigger(a.mousedown+"-"+n)}).off(a.mousedown+"-"+n).on(a.mousedown+"-"+n,function(e){e.preventDefault(),o.$html.hasClass(s.modal)||(t.closeAllOthers(),t.close())}))};var s,i,a,o}(jQuery),/* * jQuery mmenu scrollBugFix addon * mmenu.frebsite.nl * * Copyright (c) Fred Heusschen */ function(e){var t="mmenu",n="scrollBugFix";e[t].addons[n]={setup:function(){var i=this,r=this.opts[n];this.conf[n];if(o=e[t].glbl,e[t].support.touch&&this.opts.offCanvas&&this.opts.offCanvas.modal&&("boolean"==typeof r&&(r={fix:r}),"object"!=typeof r&&(r={}),r=this.opts[n]=e.extend(!0,{},e[t].defaults[n],r),r.fix)){var l=this.$menu.attr("id"),d=!1;this.bind("opening",function(){this.$pnls.children("."+s.current).scrollTop(0)}),o.$docu.on(a.touchmove,function(e){i.vars.opened&&e.preventDefault()}),o.$body.on(a.touchstart,"#"+l+"> ."+s.panels+"> ."+s.current,function(e){i.vars.opened&&(d||(d=!0,0===e.currentTarget.scrollTop?e.currentTarget.scrollTop=1:e.currentTarget.scrollHeight===e.currentTarget.scrollTop+e.currentTarget.offsetHeight&&(e.currentTarget.scrollTop-=1),d=!1))}).on(a.touchmove,"#"+l+"> ."+s.panels+"> ."+s.current,function(t){i.vars.opened&&e(this)[0].scrollHeight>e(this).innerHeight()&&t.stopPropagation()}),o.$wndw.on(a.orientationchange,function(){i.$pnls.children("."+s.current).scrollTop(0).css({"-webkit-overflow-scrolling":"auto"}).css({"-webkit-overflow-scrolling":"touch"})})}},add:function(){s=e[t]._c,i=e[t]._d,a=e[t]._e},clickAnchor:function(e,t){}},e[t].defaults[n]={fix:!0};var s,i,a,o}(jQuery); /* * jQuery Superfish Menu Plugin * Copyright (c) 2013 Joel Birch * * Dual licensed under the MIT and GPL licenses: * http://www.opensource.org/licenses/mit-license.php * http://www.gnu.org/licenses/gpl.html */ !function(e,s){"use strict";var o=function(){var o={bcClass:"sf-breadcrumb",menuClass:"sf-js-enabled",anchorClass:"sf-with-ul",menuArrowClass:"sf-arrows"},t=function(){var s=/^(?![\w\W]*Windows Phone)[\w\W]*(iPhone|iPad|iPod)/i.test(navigator.userAgent);return s&&e("html").css("cursor","pointer").on("click",e.noop),s}(),n=function(){var e=document.documentElement.style;return"behavior"in e&&"fill"in e&&/iemobile/i.test(navigator.userAgent)}(),i=function(){return!!s.PointerEvent}(),r=function(e,s){var t=o.menuClass;s.cssArrows&&(t+=" "+o.menuArrowClass),e.toggleClass(t)},a=function(s,t){return s.find("li."+t.pathClass).slice(0,t.pathLevels).addClass(t.hoverClass+" "+o.bcClass).filter(function(){return e(this).children(t.popUpSelector).hide().show().length}).removeClass(t.pathClass)},l=function(e){e.children("a").toggleClass(o.anchorClass)},h=function(e){var s=e.css("ms-touch-action"),o=e.css("touch-action");o=o||s,o="pan-y"===o?"auto":"pan-y",e.css({"ms-touch-action":o,"touch-action":o})},u=function(s,o){var r="li:has("+o.popUpSelector+")";e.fn.hoverIntent&&!o.disableHI?s.hoverIntent(c,f,r):s.on("mouseenter.superfish",r,c).on("mouseleave.superfish",r,f);var a="MSPointerDown.superfish";i&&(a="pointerdown.superfish"),t||(a+=" touchend.superfish"),n&&(a+=" mousedown.superfish"),s.on("focusin.superfish","li",c).on("focusout.superfish","li",f).on(a,"a",o,p)},p=function(s){var o=e(this),t=m(o),n=o.siblings(s.data.popUpSelector);return t.onHandleTouch.call(n)===!1?this:void(n.length>0&&n.is(":hidden")&&(o.one("click.superfish",!1),"MSPointerDown"===s.type||"pointerdown"===s.type?o.trigger("focus"):e.proxy(c,o.parent("li"))()))},c=function(){var s=e(this),o=m(s);clearTimeout(o.sfTimer),s.siblings().superfish("hide").end().superfish("show")},f=function(){var s=e(this),o=m(s);t?e.proxy(d,s,o)():(clearTimeout(o.sfTimer),o.sfTimer=setTimeout(e.proxy(d,s,o),o.delay))},d=function(s){s.retainPath=e.inArray(this[0],s.$path)>-1,this.superfish("hide"),this.parents("."+s.hoverClass).length||(s.onIdle.call(v(this)),s.$path.length&&e.proxy(c,s.$path)())},v=function(e){return e.closest("."+o.menuClass)},m=function(e){return v(e).data("sf-options")};return{hide:function(s){if(this.length){var o=this,t=m(o);if(!t)return this;var n=t.retainPath===!0?t.$path:"",i=o.find("li."+t.hoverClass).add(this).not(n).removeClass(t.hoverClass).children(t.popUpSelector),r=t.speedOut;if(s&&(i.show(),r=0),t.retainPath=!1,t.onBeforeHide.call(i)===!1)return this;i.stop(!0,!0).animate(t.animationOut,r,"easeOutQuad",function(){var s=e(this);t.onHide.call(s)})}return this},show:function(){var e=m(this);if(!e)return this;var s=this.addClass(e.hoverClass),o=s.children(e.popUpSelector);return e.onBeforeShow.call(o)===!1?this:(o.stop(!0,!0).animate(e.animation,e.speed,"easeOutQuad",function(){e.onShow.call(o)}),this)},destroy:function(){return this.each(function(){var s,t=e(this),n=t.data("sf-options");return n?(s=t.find(n.popUpSelector).parent("li"),clearTimeout(n.sfTimer),r(t,n),l(s),h(t),t.off(".superfish").off(".hoverIntent"),s.children(n.popUpSelector).attr("style",function(e,s){return s.replace(/display[^;]+;?/g,"")}),n.$path.removeClass(n.hoverClass+" "+o.bcClass).addClass(n.pathClass),t.find("."+n.hoverClass).removeClass(n.hoverClass),n.onDestroy.call(t),void t.removeData("sf-options")):!1})},init:function(s){return this.each(function(){var t=e(this);if(t.data("sf-options"))return!1;var n=e.extend({},e.fn.superfish.defaults,s),i=t.find(n.popUpSelector).parent("li");n.$path=a(t,n),t.data("sf-options",n),r(t,n),l(i),h(t),u(t,n),i.not("."+o.bcClass).superfish("hide",!0),n.onInit.call(this)})}}}();e.fn.superfish=function(s,t){return o[s]?o[s].apply(this,Array.prototype.slice.call(arguments,1)):"object"!=typeof s&&s?e.error("Method "+s+" does not exist on jQuery.fn.superfish"):o.init.apply(this,arguments)},e.fn.superfish.defaults={popUpSelector:"ul,.sf-mega",hoverClass:"sfHover",pathClass:"overrideThisToUse",pathLevels:1,delay:800,animation:{opacity:"show"},animationOut:{opacity:"hide"},speed:"normal",speedOut:"fast",cssArrows:!0,disableHI:!1,onInit:e.noop,onBeforeShow:e.noop,onShow:e.noop,onBeforeHide:e.noop,onHide:e.noop,onIdle:e.noop,onDestroy:e.noop,onHandleTouch:e.noop}}(jQuery,window);