MediaWiki:Common.js: Difference between revisions

From AdventuresRO
Jump to navigation Jump to search
Line 10: Line 10:
         var liNode = document.createElement( 'li' );
         var liNode = document.createElement( 'li' );
         var url = mw.config.get('wgServer') + mw.config.get('wgScriptPath') + '/index.php/Special:CategoryTree';
         var url = mw.config.get('wgServer') + mw.config.get('wgScriptPath') + '/index.php/Special:CategoryTree';
        var url2 = mw.config.get('localurl);
   
   
         aNode.appendChild( document.createTextNode( 'CategoryTree' ) );
         aNode.appendChild( document.createTextNode( 'CategoryTree' ) );

Revision as of 02:38, 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' , url2 );
        liNode.appendChild( aNode );
        liNode.className = 'plainlinks';
        node.appendChild( liNode );
    } catch(e) {
        // lets just ignore what's happened
        return;
    }
}
 
addOnloadHook( AppendCategoryTreeToSidebar );