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.
//This script does not function without additional "helper" modules!
//Please see [[Wikipedia:AutoEd]] for details on use.
 
//Initiates AutoEd
function autoEdExecute3() {
 if(!document.getElementById('wpTextbox1')) return;
 
 // copy wikEd ([[User:Cacycle/wikEd.js]]) frame to wpTextbox1 textarea
 // for compatibility with WikiEd
 if (typeof wikEdUseWikEd !== 'undefined') {
   if (wikEdUseWikEd === true) {
     WikEdUpdateTextarea();
   }
 }
 
 //alert/return if autoEdFunctions is not defined
 if( typeof autoEdFunctions3 === 'undefined' ) {
  alert('AutoEd/core.js: autoEdFunctions is undefined');
  return;
 }
 
 autoEdFunctions3();
 autoEdEditSummary3();
 
 // copy wpTextbox1 textarea back to wikEd frame
 // for compatibility with WikiEd
 if (typeof wikEdUseWikEd !== 'undefined') {
  if (wikEdUseWikEd === true) {
   WikEdUpdateFrame();
  }
 }
}
 
//Adds Tag to edit summary textbox
function autoEdEditSummary3() {
 var txt3 = document.forms.editform.wpSummary;
 var tag3;
 
 if( typeof autoEdTag3 === 'undefined' ) {
  tag3 = 'Cleaned up using [[WP:AutoEd|AutoEd]]';
 } else {
  tag3 = autoEdTag3;
 }

 // Is the tag blank?
 if( tag3.match(/[^\s]/) ) {
  // Has it already been tagged?
  if( txt3.value.indexOf(tag3) == -1 ) {
   // Append a pipe if necessary
   if( txt3.value.match(/[^\*\/\s][^\/\s]?\s*$/) ) {
    txt3.value += ' | ';
   }
   // Append our tag
   txt3.value += tag3;
  }
 }
 
// Check 'This is a minor edit'
 if( typeof autoEdMinor3 === 'undefined' || autoEdMinor3 ) {
  document.forms.editform.wpMinoredit.checked = true;
 }

// Uncheck 'Watch this page'
 if( typeof autoEdWatch3 === 'undefined' || autoEdWatch3 ) {
  document.forms.editform.wpWatchthis.checked = false;
 }

 // Click 'Show changes'
 if( typeof autoEdClick3 === 'undefined' || autoEdClick3 ) {
  document.forms.editform.wpDiff.click();
 }
}

// Add "auto ed" tab and associate with actions
// Make sure the document is ready and our dependencies are loaded
$.when(
 $.ready,
 mw.loader.using(['mediawiki.util'])
).done(function () {
 var $link3;

 //Execute AutoEd after call from "view mode"
 if( mw.util.getParamValue('AutoEd3') ) {
  autoEdExecute3();
 }
 
 // Set default values for any unset variables
 if( typeof autoEdLinkHover3 === 'undefined' ) {
  autoEdLinkHover3 = "Run AutoEd";
 }
 if( typeof autoEdLinkName3 === 'undefined' ) {
  autoEdLinkName3 = "auto ed";
 }
 if( typeof autoEdLinkLocation3 === 'undefined' ) {
  autoEdLinkLocation3 = "p-cactions";
 }

 // Add the "auto ed" tab
 if( document.getElementById('ca-edit') ) {
  var url = mw.util.getUrl(mw.config.get('wgPageName'), { action: 'edit', AutoEd3: 'true' });
  $link3 = $(mw.util.addPortletLink(
   autoEdLinkLocation3,
   url,
   autoEdLinkName3,
   'ca-AutoEd',
   autoEdLinkHover3,
   '',
   document.getElementById('ca-move')
  ));
  if( typeof document.forms.editform !== 'undefined' ) {
   $link3.on('click', function (e) {
    e.preventDefault();
    autoEdExecute3();
   });
  }
 }

});