MediaWiki:Gadget-Tabs.js

From Elwiki
Revision as of 19:02, 1 March 2024 by Ritsu (talk | contribs)

Note: After publishing, you may have to bypass your browser's cache to see the changes.

  • Firefox / Safari: Hold Shift while clicking Reload, or press either Ctrl-F5 or Ctrl-R (⌘-R on a Mac)
  • Google Chrome: Press Ctrl-Shift-R (⌘-Shift-R on a Mac)
  • Internet Explorer / Edge: Hold Ctrl while clicking Refresh, or press Ctrl-F5
  • Opera: Press Ctrl-F5.
$(function() {
$('div.tabdiv').each(function() {
    var tabs = $(this);
    tabs.addClass('loaded');
    tabs.find('> ul a').removeAttr('href');
    tabs.find('> ul > li').click(function() {
        var exclude = $(this).parents('ul').find('.exclude').length;
        var li = $(this);
        var index = li.index() - exclude;
        li.addClass('active').siblings('li').removeClass('active');
        tabs.children('div').eq(index).show().siblings('div').hide();
    });
    if (!$(this).hasClass('tabber-new')) tabs.find('> ul > li').first().click();
    if (getCookie('current-server-timer') !== null && tabs.hasClass('boss-timer-section')) {
       tabs.find('> ul > li:contains("'+getCookie('current-server-timer')+'")').click();
    }
   
   var tabber = window.location.hash.replace('#', '').replace(/_/g, ' ');
   if (tabber && tabber !== '') {
     var matchedTab = $('.tabber-tab:contains("'+tabber+'")')
     matchedTab.eq(0).click();
     matchedTab[0].scrollIntoView();
   }
   
});
});