summaryrefslogtreecommitdiff
path: root/resources/src/mediawiki.page/mediawiki.page.startup.js
blob: 708dcb5c30784d9aa938946caa9360d10aa06ac4 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
( function ( mw, $ ) {

	// Support: MediaWiki < 1.26
	// Cached HTML will not yet have this from OutputPage::getHeadScripts.
	document.documentElement.className = document.documentElement.className
		.replace( /(^|\s)client-nojs(\s|$)/, '$1client-js$2' );

	mw.page = {};

	$( function () {
		mw.util.init();

		/**
		 * Fired when wiki content is being added to the DOM
		 *
		 * It is encouraged to fire it before the main DOM is changed (when $content
		 * is still detatched).  However, this order is not defined either way, so you
		 * should only rely on $content itself.
		 *
		 * This includes the ready event on a page load (including post-edit loads)
		 * and when content has been previewed with LivePreview.
		 *
		 * @event wikipage_content
		 * @member mw.hook
		 * @param {jQuery} $content The most appropriate element containing the content,
		 *   such as #mw-content-text (regular content root) or #wikiPreview (live preview
		 *   root)
		 */
		mw.hook( 'wikipage.content' ).fire( $( '#mw-content-text' ) );
	} );

}( mediaWiki, jQuery ) );