MediaWiki:Gadget-Tabs.js: Difference between revisions

From Elwiki
No edit summary
No edit summary
 
(29 intermediate revisions by the same user not shown)
Line 1: Line 1:
$(function() {
$('div.tabdiv').each(function() {
$('div.tabdiv').each(function() {
     var tabs = $(this);
     var tabs = $(this);
    tabs.addClass('loaded');
     tabs.find('> ul a').removeAttr('href');
     tabs.find('> ul a').removeAttr('href');
     tabs.find('> ul > li').click(function() {
     tabs.find('> ul > li').click(function() {
        var exclude = $(this).parents('ul').find('.exclude').length;
         var li = $(this);
         var li = $(this);
         var index = li.index();
         var index = li.index() - exclude;
         li.addClass('active').siblings('li').removeClass('active');
         li.addClass('active').siblings('li').removeClass('active');
         tabs.children('div').eq(index).show().siblings('div').hide();
         tabs.children('div').eq(index).show().siblings('div').hide();
     });
     });
     tabs.find('> ul > li').first().click();
     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();
(function(window, $) {
    var tabbers = window.location.hash;
    tabbers = tabbers.replace(/^#!tabbers:/, '');
    tabbers = tabbers.split('/') || [];
 
    while(tabbers.length) {
        var route = tabbers.shift() || '';
        route = route.split('@');
        var child = route[0] || '';
        var parent = route[1] || '';
        $('#' + parent + 'tabtag' + child).click();
     }
     }
})(window, $);
 
 
  var tabber = window.location.hash.replace('#', '').replace(/_/g, ' ');
$(function() {
  if (tabber !== '') {
$('.tabber .tabber-tab').click(function() {
    var matchedTab = $('.tabber-tab:contains("'+tabber+'")');
    let tab_id = $(this)[0].classList[1];
    if (matchedTab.length) {
    tab_id = tab_id.replace('tab-', '');
        matchedTab.eq(0).click();
    $('.tabber .tabber-content').hide();
        matchedTab[0].scrollIntoView();
    $(`.tabber .content-${tab_id}`).show();
    }
  }
 
});
});
});
});

Latest revision as of 19:10, 1 March 2024

$(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 !== '') {
     var matchedTab = $('.tabber-tab:contains("'+tabber+'")');
     if (matchedTab.length) {
        matchedTab.eq(0).click();
        matchedTab[0].scrollIntoView();
     }
   }
   
});
});