User:Loco87/common.js
Wikisimpsons - The Simpsons Wiki
// Blank the deletion summary if it has some content (such as "content was"...or anything else, really)
// Adapted from https://www.mediawiki.org/wiki/MediaWiki:Gadget-CleanDeleteReasons.js
jQuery( document ).ready( function() {
if ( mw.config.get( 'wgAction' ) == 'delete' ) {
var wpReason = document.getElementById( 'wpReason' );
if ( !wpReason ) {
return;
}
if ( wpReason.value !== '' ) {
wpReason.value = '';
}
}
} );