$()

in _src/_scripts/main.js [3:32]


$(document).ready(function() {

    stickyHeader();

    $(window).resize(function() {
        stickyHeader();
    });

    // Modal Triggers
    $('.jq-modal-trigger').click(function(event) {
      var el_show = $(this).attr("href");
      $(el_show).fadeIn('slow');
      event.preventDefault();
      hideModal();
  	});

    $('.jq-modal').fitVids();

    //Call tabs for Install page
    $('ul.ml-tabs li').click(function(){
		var tab_id = $(this).attr('data-tab');

		$('ul.ml-tabs li').removeClass('current');
		$('.tab-content').removeClass('current');

		$(this).addClass('current');
		$("#"+tab_id).addClass('current');
	});

});