Toggle menu
862
3.8K
30.2K
279.1K
Catglobe Wiki
Toggle personal menu
Not logged in
Your IP address will be publicly visible if you make any edits.

MediaWiki:Common.js: Difference between revisions

MediaWiki interface page
No edit summary
No edit summary
Line 12: Line 12:
   
   
         aNode.appendChild( document.createTextNode( 'CategoryTree' ) );
         aNode.appendChild( document.createTextNode( 'CategoryTree' ) );
         aNode.setAttribute( 'href' , 'http://vietnamwiki.catglobe.com/Special:CategoryTree' );
         aNode.setAttribute( 'href' , 'http://vietnamwiki.catglobe.com/index.php/Special:CategoryTree' );
         liNode.appendChild( aNode );
         liNode.appendChild( aNode );
         liNode.className = 'plainlinks';
         liNode.className = 'plainlinks';

Revision as of 04:42, 16 December 2008

/* 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' );
 
        aNode.appendChild( document.createTextNode( 'CategoryTree' ) );
        aNode.setAttribute( 'href' , 'http://vietnamwiki.catglobe.com/index.php/Special:CategoryTree' );
        liNode.appendChild( aNode );
        liNode.className = 'plainlinks';
        node.appendChild( liNode );
    } catch(e) {
        // lets just ignore what's happened
        return;
    }

} 

addOnloadHook( AppendCategoryTreeToSidebar );