Merge "jquery.placeholder: Take placeholder text as parameter"
[lhc/web/wiklou.git] / resources / mediawiki.page / mediawiki.page.startup.js
index 163dbf3..7457e8f 100644 (file)
@@ -1,15 +1,27 @@
-( function( $ ) {
+( function ( mw, $ ) {
 
        mw.page = {};
 
-       /* Client profile classes for <html> */
+       // Client profile classes for <html>
+       // Allows for easy hiding/showing of JS or no-JS-specific UI elements
+       $( 'html' )
+               .addClass( 'client-js' )
+               .removeClass( 'client-nojs' );
 
-       var prof = $.client.profile();
-       $( 'html' ).addClass(
-               'client-' + prof.name
-               + ' client-' + prof.name + '-' + prof.versionBase
-               + ' client-' + prof.layout
-               + ' client-' + prof.platform
-       );
+       $( 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();
 
-} )( jQuery );
+               /**
+                * @event wikpage_content
+                * @member mw.hook
+                * @param {jQuery} $content
+                */
+               mw.hook( 'wikipage.content' ).fire( $( '#mw-content-text' ) );
+       } );
+
+}( mediaWiki, jQuery ) );