MediaWiki:Gadget-Tabs.js: Difference between revisions

m
no edit summary
mNo edit summary
mNo edit summary
Line 1: Line 1:
$('div.tabdiv').each(function(){
$('div.tabdiv').each(function() {
     var tabs = $(this);
     var tabs = $(this);
     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 li = $(this);
         var li = $(this);
         var index = li.index();
         var index = li.index();
Line 10: Line 10:
     tabs.find('> ul > li').first().click();
     tabs.find('> ul > li').first().click();
});
});
(function(window, $) {
    var tabbers = window.location.hash;
    tabbers = tabbers.replace(/^#!tabbers:/, '');
    tabbers = tabbers.split('/') || [];
    while(tabbers.length) {
        var route = tabbers.shift();
        $('#tabtag-' + route).click();
    }
})(window, $);