Localisation updates from http://translatewiki.net.
[T119942Repr.git] / Example / modules / ext.Example.welcome.init.js
blob6ade70c4a3d4f38bc6f75e6e88e0d2d998025c2e
1 /**
2  * Initialize Welcome
3  *
4  * This file is part of the 'ext.Example.welcome.init' module,
5  * which is enqueued for loading from ExampleHooks::onBeforePageDisplay()
6  * in Example.hooks.php.
7  */
8 ( function ( mw, $ ) {
10         // Let jQuery invoke the init method as soon as the document is ready
11         // $(..) is short for $(document).ready(..).
12         // See also api.jquery.com/jQuery and api.jquery.com/ready
13         $( mw.libs.welcome.init );
15 }( mediaWiki, jQuery ) );