Jump to content

User:Thedjatclubrock/reset.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.
// [[User:thedjatclubrock/reset.js]] adapted from Animum

importScript('User:Animum/urlparameters.js');
importScript('User:Voice of All/Addtabs/monobook.js');

function resetSandbox() {
  if(UrlParameters["sandboxreset"] == 'reset' && wgPageName == "Wikipedia:Sandbox" && wgAction == "edit") {
    document.forms["editform"].wpTextbox1.value = "\{\{Please leave this line alone (sandbox heading)\}\}\n" + 
"<!-- Hello! Feel free to try your formatting and editing skills below this line\. As this page is for editing experiments, this page will automatically be cleaned every 12 hours. -->"; //Add the base text for the sandbox
    document.forms["editform"].wpSummary.value = "[[User:thedjatclubrock/reset.js|JS EDIT]]: Reset the Sandbox"; //Make a descriptive edit summary
    document.forms["editform"].wpWatchthis.checked = false //Chances are you already have the sandbox watchlisted
    document.forms["editform"].wpMinoredit.checked = true; //Make it a minor edit
    document.editform.wpSave.click(); //Submit it!
  }
     
}
 function resetsbx() {
       mw.util.addPortletLink('p-cactions', 'javascript:resetSandbox()','http://en.wikipedia.org/enwiki/w/index.php?title=Wikipedia:Sandbox&action=edit&sandboxreset=reset', 'reset', 'ca-reset', "Reset the Sandbox"); 
});

addOnloadHook(resetsbx);