Localisation updates from https://translatewiki.net.
[mediawiki.git] / resources / src / README.md
blob9361b44a91edcfae1775804545d796711d2af46f
1 # Globals
3 ## [mw](mw.html)
5 The `mw` object is the historical entry point for MediaWiki's public-facing frontend API. In some cases, APIs are available on the `mw` object in addition to inside a [module](modules.html).
6 Generally, the use of a module is recommended where possible as it is more robust to changes in how code is organized.
8 ## [Hooks](Hooks.html)
10 The [`mw.hook`](mw.html#.hook) method provides an API to run JavaScript code when certain events occur.
11 For example, you can use a hook to run code after a page is edited.
12 For a list of stable hooks provided by MediaWiki core, see [Hooks](Hooks.html).
14 Extensions and skins can also add hooks. See the documentation for those codebases for more information on the hooks they provide.
16 ## [window](window.html)
18 Historical methods defined on the window object.