MediaWiki:Gadget-Tabs.js: Difference between revisions

From Elwiki
No edit summary
No edit summary
Line 11: Line 11:
     });
     });
     tabs.find('> ul > li').first().click();
     tabs.find('> ul > li').first().click();
     if (getCookie('current-server') !== null) {
     if (getCookie('current-server') !== null && tabs.hasClass('boss-timer-section')) {
       tabs.find('> ul > li:contains("'+getCookie('current-server')+'")').click();
       tabs.find('> ul > li:contains("'+getCookie('current-server-timer')+'")').click();
     }
     }
    
    

Revision as of 19:07, 12 May 2022

$(function() {
$('div.tabdiv').each(function() {
    var tabs = $(this);
    tabs.find('> ul a').removeAttr('href');
    tabs.find('> ul > li.tabber-tab').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();
    });
    tabs.find('> ul > li').first().click();
    if (getCookie('current-server') !== 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-tab:contains("'+tabber+'")').click();
});
});