MediaWiki:Common.js: Difference between revisions
Jump to navigation
Jump to search
Adventuresro (talk | contribs) |
Adventuresro (talk | contribs) |
||
Line 9: | Line 9: | ||
var aNode = document.createElement( 'a' ); | var aNode = document.createElement( 'a' ); | ||
var liNode = document.createElement( 'li' ); | var liNode = document.createElement( 'li' ); | ||
var url = mw.config.get('wgServer') + mw.config.get('wgScriptPath') + '/index.php/Special:CategoryTree'; | |||
aNode.appendChild( document.createTextNode( 'CategoryTree' ) ); | aNode.appendChild( document.createTextNode( 'CategoryTree' ) ); | ||
//aNode.setAttribute( 'href' , '{{localurl:Special:CategoryTree}}' ); | //aNode.setAttribute( 'href' , '{{localurl:Special:CategoryTree}}' ); | ||
aNode.setAttribute( 'href' , | aNode.setAttribute( 'href' , url ); | ||
liNode.appendChild( aNode ); | liNode.appendChild( aNode ); | ||
liNode.className = 'plainlinks'; | liNode.className = 'plainlinks'; |
Revision as of 02:36, 28 June 2023
/* Any JavaScript here will be loaded for all users on every page load. */ function AppendCategoryTreeToSidebar() { try { var node = document.getElementById( "p-tb" ) .getElementsByTagName('div')[0] .getElementsByTagName('ul')[0]; var aNode = document.createElement( 'a' ); var liNode = document.createElement( 'li' ); var url = mw.config.get('wgServer') + mw.config.get('wgScriptPath') + '/index.php/Special:CategoryTree'; aNode.appendChild( document.createTextNode( 'CategoryTree' ) ); //aNode.setAttribute( 'href' , '{{localurl:Special:CategoryTree}}' ); aNode.setAttribute( 'href' , url ); liNode.appendChild( aNode ); liNode.className = 'plainlinks'; node.appendChild( liNode ); } catch(e) { // lets just ignore what's happened return; } } addOnloadHook( AppendCategoryTreeToSidebar );