मीडियाविकि:Gadget-CleanDeleteReasons.js

ध्यान दें: प्रकाशित करने के बाद बदलाव देखने के लिए आपको अपने ब्राउज़र के कैश को हटाना पड़ सकता है।

  • Firefox/Safari: Reload क्लिक समय Shift दबाएँ, या फिर Ctrl-F5 या Ctrl-R दबाएँ (Mac पर ⌘-R)
  • Google Chrome: Ctrl-Shift-R दबाएँ (Mac पर ⌘-Shift-R)
  • Internet Explorer/Edge: Refresh पर क्लिक करते समय Ctrl दबाएँ, या Ctrl-F5 दबाएँ
  • Opera: Ctrl-F5 दबाएँ।
/* MediaWiki:Gadget-CleanDeleteReasons.js */
/*
 * Empty the "Other/additional reason" text field on action=delete pages.
 *
 * This field by default contains the raw wikitext of the page being deleted,
 * which is pretty useless most of the time and makes the deletion log very
 * hard to read. It also tends to discourage admins (humans) from actually
 * entering a real explanation of why they are deleting the page, unlike an
 * empty textfield that actually tends to encourage that.
 */
$(function () {
	var $reason = $("#wpReason input");
	var regexp = /(?:content was|page was empty|content before blanking was)/i;
	if (regexp.test($reason.val())) {
		$reason.val("");
	}
});