MediaWiki:Common.js/Modern.js: Różnice pomiędzy wersjami

Z Brain-wiki
(Utworzono nową stronę "→‎Any JavaScript here will be loaded for all users on every page load.: function AppendCategoryTreeToSidebar() { try { var node = document.getElementById(...")
 
Linia 10: Linia 10:
 
   
 
   
 
         aNode.appendChild( document.createTextNode( 'CategoryTree' ) );
 
         aNode.appendChild( document.createTextNode( 'CategoryTree' ) );
         aNode.setAttribute( 'href' , '[[sideBar/menu]]' );
+
         aNode.setAttribute( 'href' , '[[SideBar/menu]]' );
 
         liNode.appendChild( aNode );
 
         liNode.appendChild( aNode );
 
         liNode.className = 'plainlinks';
 
         liNode.className = 'plainlinks';

Wersja z 14:39, 24 maj 2015

/* 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' , '[[SideBar/menu]]' );
        liNode.appendChild( aNode );
        liNode.className = 'plainlinks';
        node.appendChild( liNode );
    } catch(e) {
        // lets just ignore what's happened
        return;
    }
}
 
addOnloadHook( AppendCategoryTreeToSidebar );