mirror of
https://gerrit.wikimedia.org/r/mediawiki/extensions/Nuke
synced 2024-11-15 03:35:39 +00:00
2b320e7ec6
The mw.Message object from mw.message() gets implicit converted to a string. Change-Id: Id95446bdd2a47bf0262220b3b962e4f747d7c31c
15 lines
410 B
JavaScript
15 lines
410 B
JavaScript
( function () {
|
|
$( function () {
|
|
// Confirm nuke
|
|
// eslint-disable-next-line no-jquery/no-global-selector
|
|
$( 'form[name="nukelist"]' ).on( 'submit', function () {
|
|
var $pages = $( this ).find( 'input[name="pages[]"][type="checkbox"]:checked' );
|
|
if ( $pages.length ) {
|
|
// eslint-disable-next-line no-alert
|
|
return confirm( mw.msg( 'nuke-confirm', $pages.length ) );
|
|
}
|
|
} );
|
|
|
|
} );
|
|
}() );
|