• Wikisimpsons needs more Featured Article, Picture, Quote, Episode and Comprehensive article nominations!
  • Wikisimpsons has a Discord server! Click here for your invite! Join to talk about the wiki, Simpsons and Tapped Out news, or just to talk to other users.
  • Make an account! It's easy, free, and your work on the wiki can be attributed to you.
TwitterFacebookDiscord

User:Solar Dragon/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 http://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 = '';
		}
	}
} );