MediaWiki:Common.js/Modern.js: Różnice pomiędzy wersjami
Z Brain-wiki
SuperAdmin (dyskusja | edycje) |
SuperAdmin (dyskusja | edycje) |
||
Linia 1: | Linia 1: | ||
− | /* Any JavaScript here will be loaded for all users on every page load. | + | /* Any JavaScript here will be loaded for all users on every page load. |
function AppendCategoryTreeToSidebar() { | function AppendCategoryTreeToSidebar() { | ||
try { | try { | ||
Linia 21: | Linia 21: | ||
addOnloadHook( AppendCategoryTreeToSidebar ); | addOnloadHook( AppendCategoryTreeToSidebar ); | ||
+ | */ |
Wersja z 15:02, 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 );
*/