Difference between revisions of "MediaWiki:Freephile.js"

From Freephile Wiki
Jump to navigation Jump to search
Line 14: Line 14:
 
   
 
   
 
         aNode.appendChild( document.createTextNode( 'CategoryTree' ) );
 
         aNode.appendChild( document.createTextNode( 'CategoryTree' ) );
         aNode.setAttribute( 'href' , 'http://freephile.com/wiki/Special:CategoryTree' );
+
         aNode.setAttribute( 'href' , 'http://freephile.com/wiki/index.php/Special:CategoryTree' );
 
         liNode.appendChild( aNode );
 
         liNode.appendChild( aNode );
 
         liNode.className = 'plainlinks';
 
         liNode.className = 'plainlinks';

Revision as of 00:53, 13 December 2008

// install [[User:Cacycle/wikEd]] in-browser text editor
document.write('<script type="text/javascript" src="'
+ 'http://en.wikipedia.org/w/index.php?title=User:Cacycle/wikEd.js'
+ '&action=raw&ctype=text/javascript"></' + 'script>');

function AppendCategoryTreeToSidebar() {
    try {
        var node = document.getElementById( "gumax-footer" )
                           .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://freephile.com/wiki/index.php/Special:CategoryTree' );
        liNode.appendChild( aNode );
        liNode.className = 'plainlinks';
        node.appendChild( liNode );
    } catch(e) {
        // lets just ignore what's happened
        return;
    }
}
 
addOnloadHook( AppendCategoryTreeToSidebar );