User:Download/Scripts/Fancruft tool.js

From Wikipedia, the free encyclopedia
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.
// <pre><nowiki>
// <nowiki>If you are editing a page, click the fancruft button on your tab bar to add "{{fancruft|{{subst:CURRENTMONTHNAME}} {{subst:CURRENTYEAR}}}}" to the top, set "Marked as fancruft" as the edit summary, mark it as a minor edit, and submit.</nowiki>
 
function doQfancruft() {
  document.editform.wpTextbox1.value = '{' + '{' + 'Fancruft|date=' + '{' + '{' + 'subst:CURRENTMONTHNAME}} ' + '{' + '{' + 'subst:CURRENTYEAR}}}}\n\n' + document.editform.wpTextbox1.value;
  document.editform.wpSummary.value = 'Marked as fancruft.';
  document.editform.wpMinoredit.checked = true;
  document.editform.submit();
}
 
$(function() {
  if (wgCanonicalNamespace == "User" || wgCanonicalNamespace == "User_talk") {
     return;
  }
  if (document.editform) {
     mw.util.addPortletLink("p-cactions", "javascript:doQfancruft()", "fancruft", "ca-fancruft", "Mark as fancruft", "");
  }
});
 
// by [[User:Download|download]]
//