Aus skandinavien-wiki.net
|
|
| (11 dazwischenliegende Versionen von 7 Benutzern werden nicht angezeigt) |
| Zeile 1: |
Zeile 1: |
| /** Import module *************************************************************
| | mw.loader.load( '//commons.wikimedia.org/w/index.php?title=MediaWiki:Gadget-HotCat.js&action=raw&ctype=text/javascript' ); |
| *
| |
| * Description: Includes a raw wiki page as javascript or CSS,
| |
| * used for including user made modules.
| |
| * Maintainers: [[User:TheDJ]]
| |
| */
| |
| importedScripts = {}; // object keeping track of included scripts, so a script ain't included twice
| |
| function importScript( page ) {
| |
| if( importedScripts[page] ) {
| |
| return;
| |
| }
| |
| importedScripts[page] = true;
| |
| var url = wgScriptPath
| |
| + '/index.php?title='
| |
| + encodeURIComponent( page.replace( / /g, '_' ) )
| |
| + '&action=raw&ctype=text/javascript';
| |
| var scriptElem = document.createElement( 'script' );
| |
| scriptElem.setAttribute( 'src' , url );
| |
| scriptElem.setAttribute( 'type' , 'text/javascript' );
| |
| document.getElementsByTagName( 'head' )[0].appendChild( scriptElem );
| |
| }
| |
| | |
| importScript('User:TheDJ/Gadget-HotCat.js')
| |
Aktuelle Version vom 23. Februar 2023, 01:34 Uhr
mw.loader.load( '//commons.wikimedia.org/w/index.php?title=MediaWiki:Gadget-HotCat.js&action=raw&ctype=text/javascript' );