User:Fetofs/script/forceeditsummary.js

From Wikipedia, the free encyclopedia

< User:Fetofs | script

Note: After saving, you have to bypass your browser's cache to see the changes. Firefox/Mozilla/Safari: hold down Shift while clicking Reload (or press Ctrl-Shift-R), Internet Explorer: press Ctrl-F5, Opera/Konqueror: press F5.

// <pre><nowiki>

/////////////////////////////////////////////////////////////////////////////////////////////////////////
// Force an edit summary if left blank -
// (http://en.wikipedia.org/wiki/User:The_Neokid/forceeditsummary/script.js)
/////////////////////////////////////////////////////////////////////////////////////////////////////////

/*
 This script is designed to make sure you never forget
 an edit summary, in accordance with the guideline
 Wikipedia:Edit summary. Feel free to link to this
 script.

 Original author: The Neokid
 Completion date: 20th February 2006
 */

 function ForceEditSummary(){
 if(document.editform.wpSummary.value == ""){
 document.editform.wpSummary.value == window.prompt("Edit summary:","")}};

 function ApplyForceEditSummary(){
 document.editform.wpSave.onclick = ForceEditSummary};

 addOnloadHook(ApplyForceEditSummary);

// </nowiki></pre>