wiki.techinc.nl/resources/mediawiki.page/mediawiki.page.ready.js

22 lines
609 B
JavaScript
Raw Normal View History

jQuery( document ).ready( function( $ ) {
/* Emulate placeholder if not supported by browser */
if ( !( 'placeholder' in document.createElement( 'input' ) ) ) {
$( 'input[placeholder]' ).placeholder();
}
/* Enable makeCollapse */
$( '.mw-collapsible' ).makeCollapsible();
/* Lazy load jquery.tablesorter */
if ( $( 'table.mw-sortable, table.sortable' ).length ) {
mw.loader.using( 'jquery.tablesorter', function() {
$( 'table.mw-sortable, table.sortable' ).tablesorter();
});
}
/* Enable CheckboxShiftClick */
$( 'input[type=checkbox]:not(.noshiftselect)' ).checkboxShiftClick();
} );