MediaWiki:Vector.js: Difference between revisions

Jump to navigation Jump to search
no edit summary
(Created page with "→‎All JavaScript here will be loaded for users of the Vector skin: function ModifySidebar( action, section, name, link ) { try { switch ( section ) { case 'languages': var target = 'p-lang'; break; case 'toolbox': var target = 'p-tb'; break; case 'navigation': var target = 'p-navigation'; break; default: var target = 'p-' + section; break; } if ( action == 'add' ) { var node = document.getElementById( target )...")
 
No edit summary
 
Line 1: Line 1:
/* All JavaScript here will be loaded for users of the Vector skin */
/* All JavaScript here will be loaded for users of the Vector skin */


function ModifySidebar( action, section, name, link ) {
function ModifySidebar( action, section, name, link ) {
Line 59: Line 60:


function CustomizeModificationsOfSidebar() {
function CustomizeModificationsOfSidebar() {
// adds [[Special:Mepedia|Special:Mepedia]] to toolbox
// adds [[Special:CategoryTree|Special:CategoryTree]] to toolbox
ModifySidebar( 'add', 'toolbox', 'CategoryTree', 'https://en.wikipedia.org/wiki/Special:CategoryTree' );
ModifySidebar( 'add', 'toolbox', 'Wikidata item', 'https://en.mepedia.org/wiki/Q5296' );
// removes [[Special:Upload|Special:Upload]] from toolbox
// removes [[Special:Upload|Special:Upload]] from toolbox
ModifySidebar( 'remove', 'toolbox', 'Upload file', 'https://en.wikipedia.org/wiki/Special:Upload' );
ModifySidebar( 'remove', 'toolbox', 'Upload file', 'https://mepdata.org/wiki/Special:Upload' );
ModifySidebar( 'remove', 'toolbox', 'What links here', 'https://mepdata.org/wiki/Special:WhatLinksHere/MediaWiki:Sidebar );
}
}


jQuery( CustomizeModificationsOfSidebar );
jQuery( CustomizeModificationsOfSidebar );

Navigation menu