Followup r104033, explicitly define the array
[lhc/web/wiklou.git] / resources / mediawiki.page / mediawiki.page.startup.js
1 ( function( $ ) {
2
3 mw.page = {};
4
5 /* Client profile classes for <html> */
6 /* Allows for easy hiding/showing of JS or no-JS-specific UI elements */
7
8 $( 'html' )
9 .addClass('client-js' )
10 .removeClass( 'client-nojs' );
11
12 } )( jQuery );