Jump to content

User:Hyacinth/monobook.js

From Wikipedia, the free encyclopedia
This is the current revision of this page, as edited by Ruud Koot (talk | contribs) at 21:01, 28 February 2007 (addLoadEvent -> addOnloadHook). The present address (URL) is a permanent link to this version.
(diff) ← Previous revision | Latest revision (diff) | Newer revision → (diff)
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.
 /*
 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);