User:Kayau/motdclosure.js
Appearance
Code that you insert on this page could contain malicious content capable of compromising your account. If you import a script from another page with "importScript", "mw.loader.load", "iusc", or "lusc", take note that this causes you to dynamically load a remote script, which could be changed by others. Editors are responsible for all edits and actions they perform, including by scripts. User scripts are not centrally supported and may malfunction or become inoperable due to software changes. A guide to help you find broken scripts is available. If you are unsure whether code you are adding to this page is safe, you can ask at the appropriate village pump. This code will be executed when previewing this page. |
Documentation for this user script can be added at User:Kayau/motdclosure. |
///////////////////////////////////////////////////////////////////////////////////////////////////////////
//Created by [[User:Magnus animum]] to make MOTD maintenance work more easy. //
//Note: To close nominations using this script, it MUST be done section by section. If you want to mass //
//close, I suggest that you do it the old-fashioned way — manually typing the outcome of the nomination. //
//Edited by: Hi878 //
///////////////////////////////////////////////////////////////////////////////////////////////////////////
function closemottonom() {
result = prompt("What was the result?");
reason = prompt("Why?");
document.editform.wpTextbox1.value = document.editform.wpTextbox1.value += "\n" + ":" + "{" + "{" + result + "}" + "}" + " " + reason + ". " + "~" + "~" + "~" + "~";
document.editform.wpSummary.value = document.editform.wpSummary.value + "Closing. Result was " + result + " " + reason + ".";
document.editform.wpMinoredit.checked = false;
}
function closemottotab() {
mw.util.addPortletLink( 'p-cactions', "javascript:closemottonom()", "close nom", "ca-close nom", "close nom", "close nom");
}
$(function() {
if (document.title.indexOf("Editing Wikipedia:Motto of the day/Nominations") != -1 && document.title.indexOf("\(section\)") != -1) {
addOnloadHook(closemottotab);
}
});