Jump to content

User:King of Hearts/closeffd.js

From Wikipedia, the free encyclopedia
The printable version is no longer supported and may have rendering errors. Please update your browser bookmarks and please use the default browser print function instead.
Note: After saving, you have to bypass your browser's cache to see the changes. Google Chrome, Firefox, Microsoft Edge and Safari: Hold down the ⇧ Shift key and click the Reload toolbar button. For details and instructions about other browsers, see Wikipedia:Bypass your cache.
// closeffd.js - written by [[User:King of Hearts]], modified from
// [[Wikipedia:WikiProject User scripts/Scripts/CloseAFD.js]] by [[User:Johnleemk]]
// and [[User:Lifebaka/closedrv.js]] by [[User:Lifebaka]]

function autoffd_result()
{
	var close = prompt("Result of debate?")
	var f = document.editform, t = f.wpTextbox1;
	t.value = t.value.split(']]====').join(']]====' + '\n' + '{{subst:' + 'ffd top' + '|' + '\'' + '\'' + '\'' + close + '\'' + '\'' + '\'' + '.}}' + ' ~~' + '~~');
	t.value += "{{subst:" + "ffd bottom" + "}}";
	f.wpSummary.value += "Closing debate; result was " + close;
}

function autoffd_add_ffd_tabs()
{
	// Only add for pages with the right string somewhere in the title
	if ((document.title.indexOf("Editing Wikipedia:Files for deletion/") != -1) && (document.title.indexOf("(section)") != -1))
	{
		mw.util.addPortletLink('p-cactions', 'javascript:autoffd_result()', "close");
	}
}
 
$(autoffd_add_ffd_tabs);