Merge "Don't check namespace in SpecialWantedtemplates"
[lhc/web/wiklou.git] / resources / src / mediawiki.page / mediawiki.page.startup.js
1 ( function ( mw, $ ) {
2
3 // Support: MediaWiki < 1.26
4 // Cached HTML will not yet have this from OutputPage::getHeadScripts.
5 document.documentElement.className = document.documentElement.className
6 .replace( /(^|\s)client-nojs(\s|$)/, '$1client-js$2' );
7
8 mw.page = {};
9
10 $( function () {
11 mw.util.init();
12
13 /**
14 * Fired when wiki content is being added to the DOM
15 *
16 * It is encouraged to fire it before the main DOM is changed (when $content
17 * is still detatched). However, this order is not defined either way, so you
18 * should only rely on $content itself.
19 *
20 * This includes the ready event on a page load (including post-edit loads)
21 * and when content has been previewed with LivePreview.
22 *
23 * @event wikipage_content
24 * @member mw.hook
25 * @param {jQuery} $content The most appropriate element containing the content,
26 * such as #mw-content-text (regular content root) or #wikiPreview (live preview
27 * root)
28 */
29 mw.hook( 'wikipage.content' ).fire( $( '#mw-content-text' ) );
30 } );
31
32 }( mediaWiki, jQuery ) );