MediaWiki:Gadget-Tabs.js: Difference between revisions

no edit summary
No edit summary
No edit summary
Line 1: Line 1:
$(function() {
$('div.tabdiv').each(function() {
$('div.tabdiv').each(function() {
     var tabs = $(this);
     var tabs = $(this);
Line 9: Line 10:
         tabs.children('div').eq(index).show().siblings('div').hide();
         tabs.children('div').eq(index).show().siblings('div').hide();
     });
     });
     tabs.find('> ul > li').first().not('.boss-timer-section .tabber-tab').click();
     tabs.find('> ul > li').first().click();
    if (getCookie('current-server') !== null && $(this).text() == getCookie('current-server')) {
      $(this).click();
    }
    
    
   var tabber = window.location.hash.replace('#', '').replace(/_/g, ' ');
   var tabber = window.location.hash.replace('#', '').replace(/_/g, ' ');
   if (tabber != '') $('.tabber-tab:contains("'+tabber+'")').click();
   if (tabber != '') $('.tabber-tab:contains("'+tabber+'")').click();
});
});
});