MediaWiki:Gadget-reasons.js

From WikiLectures

Note: After publishing, you may have to bypass your browser's cache to see the changes.

  • Firefox / Safari: Hold Shift while clicking Reload, or press either Ctrl-F5 or Ctrl-R (⌘-R on a Mac)
  • Google Chrome: Press Ctrl-Shift-R (⌘-Shift-R on a Mac)
  • Internet Explorer / Edge: Hold Ctrl while clicking Refresh, or press Ctrl-F5
  • Opera: Press Ctrl-F5.
/* <pre> */
 
// FUNCTION EDITS FIELD WITH REASONS FOR DELETING THE PAGE
// if there was "Delete" template, the reason is filled in
// otherwise the field will be empty
function deleteArticle(){
  // without deleting it make no sense to do this
  if (wgAction != "delete") return;
 
  // reasons
  wpReason = document.getElementById("wpReason");
  if (!wpReason) return;
 
  // usual reasons
  usualReasons = /(content was|page was empty|content before blanking was)/i;
 
  // help string
  wpReasonSmall = wpReason.value.toLowerCase();
 
  // reasons edit
  if (usualReasons.test(wpReasonSmall)){
    if((wpReasonSmall.indexOf("{{smazat|") != -1) && (wpReasonSmall.indexOf("}}") != -1)) {
      indexStart = wpReasonSmall.indexOf("{{delete|") + 9;
      indexEnd = wpReasonSmall.indexOf("}}");
      wpReason.value = wpReason.value.substring(indexStart, indexEnd);
    } else {wpReason.value = "";}
  }
}
 
addOnloadHook(deleteArticle);
 
/* </pre> */