User:Lee Vilenski/script/nameswaping.js

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.
function leev_firstlastname(){
 var txt=document.editform.wpTextbox1;
//rem linking templates
    regex(/([A-Za-z]+), ([A-Za-z]+)/gi, '[[$2 $1]]');
 setreason('Fix names and link', 'appendonce');
}
$.when(mw.loader.using('mediawiki.util'), $.ready).done(function () {
 if(document.forms.editform) {
  mw.util.addPortletLink('p-tb', 'javascript:leev_firstlastname()', 'Euro Tour', 'cruft', 'cruft', '', '');
  }
});