Jump to content

MediaWiki:Gadget-CleanDeleteReasons.js: Difference between revisions

From The Austrian Economics Wiki, the global repository of classical-liberal thought
duplicate of http://meta.wikimedia.org/w/index.php?oldid=997214 (see revision history there)
 
m 1 revision
 
(No difference)

Latest revision as of 04:20, 17 December 2013

//Written and maintained by [[m:User:Mike.lifeguard]] at en.wb and meta.
function deletemods(){
	if (wgAction == "delete") {
		var wpReason = document.getElementById("wpReason");
		if (!wpReason) return;
		var regexp = /(content was|page was empty|content before blanking was)/i;
		if (regexp.test(wpReason.value)){
			wpReason.value = "";
		}
	}
}
addOnloadHook(deletemods);