Difference between revisions of "MediaWiki:Common.js"
Jump to navigation
Jump to search
Nussnougat (talk | contribs) |
Nussnougat (talk | contribs) |
||
Line 2: | Line 2: | ||
mw.loader.load( '/w/index.php?title=MediaWiki:Sandbox.js&action=raw&ctype=text/javascript' ); | mw.loader.load( '/w/index.php?title=MediaWiki:Sandbox.js&action=raw&ctype=text/javascript' ); | ||
console.log( 'Common JS loaded!!' ); | console.log( 'Common JS loaded!!' ); | ||
+ | |||
+ | $(document).ready(function() { | ||
+ | console.log( mw.config ); | ||
+ | $('#sandbox-output').html('Sandbox JS loaded!'); | ||
+ | }); |
Revision as of 02:30, 6 August 2019
/* Any JavaScript here will be loaded for all users on every page load. */ mw.loader.load( '/w/index.php?title=MediaWiki:Sandbox.js&action=raw&ctype=text/javascript' ); console.log( 'Common JS loaded!!' ); $(document).ready(function() { console.log( mw.config ); $('#sandbox-output').html('Sandbox JS loaded!'); });