Content deleted Content added
m fix |
m hm |
||
Line 7:
function resetSandbox() {
if(UrlParameters["sandboxreset"] == '1' && wgPageName == "Wikipedia:Sandbox" && wgAction == "edit") {
document.forms["editform"].elements["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"].elements["wpSummary"].value = "[[User:Animum/reset.js|JS EDIT]]: Reset the Sandbox"; //Make a descriptive edit summary
document.forms["editform"].elements["wpWatchthis"].checked = false; //Chances are you already have the sandbox watchlisted
document.forms["editform"].elements["wpMinoredit"].checked = true; //Make it a minor edit
if(UrlParameters["indirect"] == '1') { //If you've clicked on the toolbox link
window.setTimeout(function() { document.forms["editform"].elements["wpDiff"].click(); }, 200); //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?
|