Merry Christmas from the IIWiki Team! Have a happy new year!
MediaWiki:Gadget-SidebarTOC.js: Difference between revisions
Jump to navigation
Jump to search
mNo edit summary |
mNo edit summary |
||
Line 6: | Line 6: | ||
$sidebar = $( '#mw-panel' ); | $sidebar = $( '#mw-panel' ); | ||
$article = $( '.vector-body' ); | $article = $( '.vector-body' ); | ||
$tocContainer = $( '<div class="mw-table-of-contents-container"></div>' ).insertAfter( $sidebar | $tocContainer = $( '<div class="mw-table-of-contents-container"></div>' ).insertAfter( $sidebar ); | ||
$toc = $( '.toc' ).addClass( 'vector-sticky-toc-container' ).appendTo( $tocContainer ); | $toc = $( '.toc' ).addClass( 'vector-sticky-toc-container' ).appendTo( $tocContainer ); | ||
Line 13: | Line 13: | ||
} | } | ||
$tocContainer.css(' | $tocContainer.css({ | ||
position: 'fixed', | |||
top: 0, | |||
bottom: 0, | |||
width: '15%', /* Adjust as needed */ | |||
overflow: 'auto' | |||
}); | |||
}); | }); | ||
}); | }); |
Revision as of 07:08, 22 February 2024
mw.loader.using( 'mediawiki.toc', function () {
$( function () {
var $window, $sidebar, $article, $tocContainer, $toc;
$window = $( window );
$sidebar = $( '#mw-panel' );
$article = $( '.vector-body' );
$tocContainer = $( '<div class="mw-table-of-contents-container"></div>' ).insertAfter( $sidebar );
$toc = $( '.toc' ).addClass( 'vector-sticky-toc-container' ).appendTo( $tocContainer );
if ( !$toc.length ) {
return;
}
$tocContainer.css({
position: 'fixed',
top: 0,
bottom: 0,
width: '15%', /* Adjust as needed */
overflow: 'auto'
});
});
});