X-Git-Url: https://git.heureux-cyclage.org/?a=blobdiff_plain;f=resources%2Fmediawiki.page%2Fmediawiki.page.startup.js;h=3846681878a1efe2562d0323ab88a0a8ef67535c;hb=5e77f391a528d4bc64fc8cfe8065e254427b9ccd;hp=6a11d3e15f26f1b9237de118aaaac86209dcd004;hpb=da4efc7ab05c02ae5505fdc3e31af0bb1e682631;p=lhc%2Fweb%2Fwiklou.git diff --git a/resources/mediawiki.page/mediawiki.page.startup.js b/resources/mediawiki.page/mediawiki.page.startup.js index 6a11d3e15f..3846681878 100644 --- a/resources/mediawiki.page/mediawiki.page.startup.js +++ b/resources/mediawiki.page/mediawiki.page.startup.js @@ -5,14 +5,23 @@ // Client profile classes for // Allows for easy hiding/showing of JS or no-JS-specific UI elements $( 'html' ) - .addClass('client-js' ) + .addClass( 'client-js' ) .removeClass( 'client-nojs' ); - // Initialize utilities as soon as the document is ready (mw.util.$content, - // messageBoxNew, profile, tooltip access keys, Table of contents toggle, ..). - // Enqueued into domready from here instead of mediawiki.page.ready to ensure that it gets enqueued - // before other modules hook into document ready, so that mw.util.$content (defined by mw.util.init), - // is defined for them. - $( mw.util.init ); + $( function () { + // Initialize utilities as soon as the document is ready (mw.util.$content, + // messageBoxNew, profile, tooltip access keys, Table of contents toggle, ..). + // In the domready here instead of in mediawiki.page.ready to ensure that it gets enqueued + // before other modules hook into domready, so that mw.util.$content (defined by + // mw.util.init), is defined for them. + mw.util.init(); + + /** + * @event wikipage_content + * @member mw.hook + * @param {jQuery} $content + */ + mw.hook( 'wikipage.content' ).fire( $( '#mw-content-text' ) ); + } ); }( mediaWiki, jQuery ) );