2019-05-07 00:20:57 +00:00
|
|
|
( function () {
|
2018-01-21 21:25:22 +00:00
|
|
|
$( function () {
|
2016-12-28 08:15:54 +00:00
|
|
|
// Confirm nuke
|
2019-05-07 00:20:57 +00:00
|
|
|
// eslint-disable-next-line no-jquery/no-global-selector
|
2016-12-28 08:15:54 +00:00
|
|
|
$( 'form[name="nukelist"]' ).on( 'submit', function () {
|
|
|
|
var pages = $( this ).find( 'input[name="pages[]"][type="checkbox"]:checked' );
|
|
|
|
if ( pages.length ) {
|
2019-05-07 00:20:57 +00:00
|
|
|
// eslint-disable-next-line no-alert
|
2018-12-11 15:51:41 +00:00
|
|
|
return confirm( mw.message( 'nuke-confirm', pages.length ) );
|
2016-12-28 08:15:54 +00:00
|
|
|
}
|
|
|
|
} );
|
|
|
|
|
|
|
|
} );
|
2019-05-07 00:20:57 +00:00
|
|
|
}() );
|