370c3a19c2037df064926455407eb570dac6d779
[lhc/web/wiklou.git] / resources / mediawiki.page / mediawiki.page.ready.js
1 jQuery( document ).ready( function( $ ) {
2
3 /* Emulate placeholder if not supported by browser */
4 if ( !( 'placeholder' in document.createElement( 'input' ) ) ) {
5 $( 'input[placeholder]' ).placeholder();
6 }
7
8 /* Enable makeCollapsible */
9 $( '.mw-collapsible' ).makeCollapsible();
10
11 /* Lazy load jquery.tablesorter */
12 if ( $( 'table.sortable' ).length ) {
13 mw.loader.using( 'jquery.tablesorter', function() {
14 $( 'table.sortable' ).tablesorter();
15 });
16 }
17
18 /* Enable CheckboxShiftClick */
19 $( 'input[type=checkbox]:not(.noshiftselect)' ).checkboxShiftClick();
20
21 /* Add accesskey hints to the tooltips */
22 mw.util.updateTooltipAccessKeys();
23
24 } );