d7b9a559f019152e4d781d2b39e7a62423e0b23c
[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 $( 'html' )
8 .addClass('client-js' )
9 .removeClass( 'client-nojs' );
10
11 } )( jQuery );