MediaWiki:Gadget-Tabs.js
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)
- Edge: Hold Ctrl while clicking Refresh, or press Ctrl-F5.
const Tabs = {
init( $content ) {
console.log( 'init' );
$content.find( '.template-tabs-tab' ).on( 'click', Tabs.showTab );
},
showTab() {
const $tab = $( this );
const index = $tab.index();
$tab.children( 'span' ).addClass( 'active' );
$tab.siblings( '.template-tabs-tab' ).children( 'span' ).removeClass( 'active' );
$tab.siblings( '.template-tabs-content' ).hide().eq( index ).show();
}
};
mw.hook( 'wikipage.content' ).add( Tabs.init );