jQuery(document).ready(function() { var counter = jQuery('#counter-count').data('counter'); if ( counter != '0') { jQuery('li.aazeen-w-red-tab a').append('' + counter + ''); } else { jQuery('.aazeen-tab').removeClass( 'aazeen-w-red-tab' ); } /* Tabs in welcome page */ function aazeen_welcome_page_tabs(event) { jQuery(event).parent().addClass("active"); jQuery(event).parent().siblings().removeClass("active"); var tab = jQuery(event).attr("href"); jQuery(".aazeen-tab-pane").not(tab).css("display", "none"); jQuery(tab).fadeIn(); } var aazeen_actions_anchor = location.hash; if( (typeof aazeen_actions_anchor !== 'undefined') && (aazeen_actions_anchor != '') ) { aazeen_welcome_page_tabs('a[href="'+ aazeen_actions_anchor +'"]'); } jQuery(".aazeen-nav-tabs a").click(function(event) { event.preventDefault(); aazeen_welcome_page_tabs(this); }); /* Tab Content height matches admin menu height for scrolling purpouses */ $tab = jQuery('.aazeen-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); } });