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' );
14 * Fired when wiki content is being added to the DOM
16 * It is encouraged to fire it before the main DOM is changed (when $content
17 * is still detached). However, this order is not defined either way, so you
18 * should only rely on $content itself.
20 * This includes the ready event on a page load (including post-edit loads)
21 * and when content has been previewed with LivePreview.
23 * @event wikipage_content
25 * @param {jQuery} $content The most appropriate element containing the content,
26 * such as #mw-content-text (regular content root) or #wikiPreview (live preview
29 mw.hook( 'wikipage.content' ).fire( $( '#mw-content-text' ) );
31 var $diff = $( 'table.diff[data-mw="interface"]' );
34 * Fired when the diff is added to a page containing a diff
36 * Similar to the {@link mw.hook#event-wikipage_content wikipage.content hook}
37 * $diff may still be detached when the hook is fired.
39 * @event wikipage_diff
41 * @param {jQuery} $diff The root element of the MediaWiki diff (`table.diff`).
43 mw.hook( 'wikipage.diff' ).fire( $diff.eq( 0 ) );
47 }( mediaWiki, jQuery ) );