jQuery(document).ready(function ($) { "use strict"; if ($('.fancy_video')[0]) { $(".fancy_video").fancybox({ type: 'iframe', 'width' : '853px', 'height' : '480px', 'padding' : '0', 'scrolling' : 'no', openEffect: 'elastic', closeEffect: 'elastic' }); } $(".rev_slider_nav").on("click", function () { $(this).parents().find(".rev_slider_nav.active").removeClass("active"); $(this).addClass("active"); return false; }); $("select").select2({width: '100%', minimumResultsForSearch: '-1'}); $(".top_nav_wr .top_nav_affix").affix({ offset: { top: $(".top_bar").height() } }); $('#menu_toggle').on('click', function () { $(this).toggleClass('open'); $('.top_mobile_menu_wr').toggleClass('active'); return false; }); $(".top_mobile_menu_wr ul.top_mobile_menu li.menu-item-has-children > a").on('click', function () { $(this).closest('li').toggleClass('active'); $(this).closest('li').find('> ul').slideToggle(300); return false; }); //stepper-widget.js jQuery('.stepper-widget').stepper(); jQuery('.stepper-widget').on('stepperupdate', function(ev, data){ console.log(data.updateType); }); }); //custom js code