直接跳至內容

MediaWiki:Gadget-CleanDeleteReasons.js

來自華夏公益教科書,面向開放世界的開放書籍
注意: 儲存後,更改可能不會立即生效。點選此處瞭解如何繞過瀏覽器的快取。
  • Mozilla / Firefox / Safari:按住Shift鍵的同時點選重新載入,或者按Ctrl-Shift-R(Apple Mac 上為 Cmd-Shift-R);
  • Internet Explorer:按住Ctrl鍵的同時點選重新整理,或者按Ctrl-F5
  • Konqueror:只需點選重新載入按鈕,或者按F5
  • Opera 使用者可能需要在工具→首選項中完全清除其快取。
/**
 * Written and maintained by [[m:User:Mike.lifeguard]] at en.wikibooks.org and meta.wikimedia.org.
 */
$(function(){
	if (mw.config.get('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 = "";
		}
	}
});
華夏公益教科書