jQuery(document).ready(function() { /* Tabs in welcome page */ function appointment_welcome_page_tabs(event) { jQuery(event).parent().addClass("active"); jQuery(event).parent().siblings().removeClass("active"); var tab = jQuery(event).attr("href"); jQuery(".appointment-tab-pane").not(tab).css("display", "none"); jQuery(tab).fadeIn(); } jQuery(".appointment-nav-tabs li").slice(0,1).addClass("active"); jQuery(".appointment-nav-tabs a").click(function(event) { event.preventDefault(); appointment_welcome_page_tabs(this); }); /* Tab Content height matches admin menu height for scrolling purpouses */ $tab = jQuery('.appointment-tab-content > div'); $admin_menu_height = jQuery('#adminmenu').height(); if( (typeof $tab !== 'undefined') && (typeof $admin_menu_height !== 'undefined') ) { $newheight = $admin_menu_height - 180; $tab.css('min-height',$newheight); } jQuery(".appointment-custom-class").click(function(event){ event.preventDefault(); jQuery('.appointment-nav-tabs li a[href="#recommended_actions"]').click(); }); jQuery(".appointment-free-pro-demo-class").click(function(event){ event.preventDefault(); jQuery('.appointment-nav-tabs li a[href="#free_pro_demo"]').click(); }); jQuery(".appointment-changelog-class").click(function(event){ event.preventDefault(); jQuery('.appointment-nav-tabs li a[href="#changelog"]').click(); }); }); (function($){ $(document).ready(function() { // Show all content by default $('.tab-item').addClass('show'); $('.tab-button').on('click', function() { var tab = $(this).data('tab'); $('.tab-button').removeClass('active'); $(this).addClass('active'); if (tab === 'all') { $('.tab-item').addClass('show'); } else { $('.tab-item').each(function() { if ($(this).data('tab') === tab) { $(this).addClass('show'); } else { $(this).removeClass('show'); } }); } }); }); })(jQuery);