User:Animum/reset.js: Difference between revisions

Content deleted Content added
Animum (talk | contribs)
m .....
Animum (talk | contribs)
m ...
Line 7:
 
addOnloadHook(function () {
if(UrlParameters["sandboxresetreset"] == 1'y' && 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:Animum/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
if(UrlParameters["indirect"] == 1'y') { //If you've clicked on the toolbox link
document.forms["editform"].wpDiff.click(); //Load the diff if you are resetting it per the toolbox link
var save = confirm("Save? (click \"OK\" to save; \"cancel\" to abort)"); // Do you want to make these changes?
Line 24:
/* Add the buttons */
if(wgPageName == "Wikipedia:Sandbox") // If the page you are viewing is the sandbox
{ addPortletLink('p-cactions', 'http://en.wikipedia.org/w/index.php?title=Wikipedia:Sandbox&action=edit&sandboxresetreset=1y', 'reset', 'ca-reset', "Reset the Sandbox"); }
if(wgPageName != "Wikipedia:Sandbox") // If the page you are viewing is NOT the sandbox
{ addToolboxLink("http://en.wikipedia.org/w/index.php?title=Wikipedia:Sandbox&action=edit&sandboxresetreset=1y&indirect=1y", 'Reset the Sandbox', '', '', ''); }
});