MediaWiki:Common.js: Unterschied zwischen den Versionen
Zur Navigation springen
Zur Suche springen
Commented out testing (maybe we need that someday) |
test catformat without extension Markierung: Zurückgesetzt |
||
| Zeile 86: | Zeile 86: | ||
jQuery( CustomizeModificationsOfSidebar ); | jQuery( CustomizeModificationsOfSidebar ); | ||
*/ | */ | ||
mw.hook('wikipage.content').add(function ($content) { | |||
if ($content.find('.catformat-on').length) { | |||
document.documentElement.classList.add('catformat-on'); | |||
} else { | |||
document.documentElement.classList.remove('catformat-on'); | |||
} | |||
}); | |||
Version vom 23. August 2025, 10:24 Uhr
/* Das folgende JavaScript wird für alle Benutzer geladen. */
function setupSpoilerBoxes(content)
{
function toggleChildren()
{
$(this).parent().children(".categoryList").toggleClass("hidden shown");
}
content.find(".categoryListTitle").click(toggleChildren);
}
mw.hook( 'wikipage.content' ).add( setupSpoilerBoxes );
mw.loader.load( '/index.php?title=MediaWiki:InfinityBar.js&action=raw&ctype=text/javascript' );
mw.loader.load( '/index.php?title=MediaWiki:Test.js&action=raw&ctype=text/javascript' );
//Image Map Editor
if (mw.config.get('wgNamespaceNumber')==6 && mw.config.get('wgAction')=='view') {
mw.loader.load('//imagemapedit.toolforge.org/ime.js');
}
/*
//Just testing something
function ModifySidebar( action, section, name, link ) {
try {
switch ( section ) {
case 'languages':
var target = 'p-lang';
break;
case 'toolbox':
var target = 'p-tb';
break;
case 'navigation':
var target = 'p-navigation';
break;
default:
var target = 'p-' + section;
break;
}
if ( action == 'add' ) {
var node = document.getElementById( target )
.getElementsByTagName( 'div' )[0]
.getElementsByTagName( 'ul' )[0];
var aNode = document.createElement( 'a' );
var liNode = document.createElement( 'li' );
aNode.appendChild( document.createTextNode( name ) );
aNode.setAttribute( 'href', link );
liNode.appendChild( aNode );
liNode.className = 'plainlinks';
node.appendChild( liNode );
}
if ( action == 'remove' ) {
var list = document.getElementById( target )
.getElementsByTagName( 'div' )[0]
.getElementsByTagName( 'ul' )[0];
var listelements = list.getElementsByTagName( 'li' );
for ( var i = 0; i < listelements.length; i++ ) {
if (
listelements[i].getElementsByTagName( 'a' )[0].innerHTML == name ||
listelements[i].getElementsByTagName( 'a' )[0].href == link
)
{
list.removeChild( listelements[i] );
}
}
}
} catch( e ) {
// let's just ignore what's happened
return;
}
}
function CustomizeModificationsOfSidebar() {
// adds [[PDF Generator]] to Navigation
ModifySidebar( 'add', 'navigation', 'PDF erstellen', 'https://pdf.howtobeahero.de?title='+wgPageName );
}
jQuery( CustomizeModificationsOfSidebar );
*/
mw.hook('wikipage.content').add(function ($content) {
if ($content.find('.catformat-on').length) {
document.documentElement.classList.add('catformat-on');
} else {
document.documentElement.classList.remove('catformat-on');
}
});