MediaWiki:Gadget-Tabs.js: Difference between revisions

MediaWiki interface page
m (preserve hash when initializing each tab)
mNo edit summary
Line 1: Line 1:
$('div.tabdiv').each(function() {
$('div.tabdiv').each(function() {
var hash = window.location.hash;
     var tabs = $(this);
     var tabs = $(this);
     tabs.find('> ul a').removeAttr('href');
     tabs.find('> ul a').removeAttr('href');
Line 10: Line 9:
         window.location.hash = $(li).attr("id");
         window.location.hash = $(li).attr("id");
     });
     });
     tabs.find('> ul > li:not(".hidden")').first().click();
      
     window.location.hash = hash;
    // activate first non-hidden tab without changing the hash
    var li = tabs.find('> ul > li:not(".hidden")').first()
    var index = li.index();
    li.addClass('active').siblings('li').removeClass('active');
     tabs.children('div').eq(index).show().siblings('div').hide();
});
});



Revision as of 01:46, 17 June 2020

$('div.tabdiv').each(function() {
    var tabs = $(this);
    tabs.find('> ul a').removeAttr('href');
    tabs.find('> ul > li').click(function() {
        var li = $(this);
        var index = li.index();
        li.addClass('active').siblings('li').removeClass('active');
        tabs.children('div').eq(index).show().siblings('div').hide();
        window.location.hash = $(li).attr("id");
    });
    
    // activate first non-hidden tab without changing the hash
    var li = tabs.find('> ul > li:not(".hidden")').first()
    var index = li.index();
    li.addClass('active').siblings('li').removeClass('active');
    tabs.children('div').eq(index).show().siblings('div').hide();
});

(function(window, $) {
    var tabbers = window.location.hash;
  
    tabbers = tabbers.replace(/tabtag/, '@');
    tabbers = tabbers.split('/') || [];

    while(tabbers.length) {
        var route = tabbers.shift() || '';
        route = route.split('@');
        var child = route[1] || '';
        var parent = route[0] || '';
        $(parent + 'tabtag' + child).click();
    }
})(window, $);