Jump to content

User:OsamaK/Editsummary.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.
// {{Editsummary}} tagger
function editsummary() {
if (document.editform) {
document.editform.wpTextbox1.value = "{{subst:" + "Editsummary}}--~~" + "~~";
document.editform.wpSummary.value="[[Help:Edit summary|Edit summary]]";
document.editform.wpWatchthis.checked = false;
document.editform.submit();
} 
}
addOnloadHook(
if (document.location.href.indexOf("editsummary=1") > 0) editsummary();
);