mediawiki.page.startup: Code cleanup
authorMatmaRex <matma.rex@gmail.com>
Tue, 2 Jul 2013 12:24:49 +0000 (14:24 +0200)
committerMatmaRex <matma.rex@gmail.com>
Tue, 2 Jul 2013 12:24:49 +0000 (14:24 +0200)
* Whitespace fix
* Explicitly use $( document ).ready instead of $ for grepping

Change-Id: I5f63bcbade559cec34534ecef939661d0518ba3f

resources/mediawiki.page/mediawiki.page.startup.js

index 6a11d3e..029039d 100644 (file)
@@ -5,7 +5,7 @@
        // Client profile classes for <html>
        // 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,
@@ -13,6 +13,6 @@
        // 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 );
+       $( document ).ready( mw.util.init );
 
 }( mediaWiki, jQuery ) );