blob: ee416d67e899a0dd4bff17bad1409378976e2471 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
|
( function ( mw , $ ) {
var supportsPlaceholder = 'placeholder' in document.createElement( 'input' );
mw.hook( 'wikipage.content' ).add( function ( $content ) {
var $sortableTables;
// Run jquery.placeholder polyfill if placeholder is not supported
if ( !supportsPlaceholder ) {
$content.find( 'input[placeholder]' ).placeholder();
}
// Run jquery.makeCollapsible
$content.find( '.mw-collapsible' ).makeCollapsible();
// Lazy load jquery.tablesorter
$sortableTables = $content.find( 'table.sortable' );
if ( $sortableTables.length ) {
mw.loader.using( 'jquery.tablesorter', function () {
$sortableTables.tablesorter();
} );
}
// Run jquery.checkboxShiftClick
$content.find( 'input[type="checkbox"]:not(.noshiftselect)' ).checkboxShiftClick();
} );
// Things outside the wikipage content
$( function () {
if ( !supportsPlaceholder ) {
// Exclude content to avoid hitting it twice for the (first) wikipage content
$( 'input[placeholder]' ).not( '#mw-content-text input' ).placeholder();
}
// Add accesskey hints to the tooltips
mw.util.updateTooltipAccessKeys();
} );
}( mediaWiki, jQuery ) );
|