MediaWiki:Common.js
From KeenWiki
Note: After saving, you may have to bypass your browser's cache to see the changes.
- Firefox / Safari: Hold Shift while clicking Reload, or press either Ctrl-F5 or Ctrl-R (⌘-R on a Mac)
- Google Chrome: Press Ctrl-Shift-R (⌘-Shift-R on a Mac)
- Internet Explorer: Hold Ctrl while clicking Refresh, or press Ctrl-F5
- Opera: Clear the cache in Tools → Preferences
/* Any JavaScript here will be loaded for all users on every page load. */ function addForceSummary() { if(/\?title=Talk:/.test(window.location.href)) return; // Don't force a summary for a Talk page if(/\?title=User_talk:/.test(window.location.href)) return; // Don't force a summary for a User discussion page if(!/&action=edit/.test(window.location.href) && !/&action=submit/.test(window.location.href)) return; if(/§ion=new/.test(window.location.href)) return; if(!document.forms.editform) return; document.forms.editform.wpSave.onclick = forceSummary; // The second invocation of this will cause extra annoyance if there is no edit summary present. If there *is* an edit summary, the dialog box will not appear. //document.forms.editform.wpSave.onfocus = forceSummary; } function forceSummary() { if(!document.forms.editform.wpSummary.value.replace(/^(?:\/\\*.*\\*\/)? *(.*) *$/,'$1')) { alert('Please enter an edit summary before saving the page!'); document.getElementById('wpSummaryLabel').style.color = "#FF0000"; document.getElementById('wpSummary').style.backgroundColor = "#FFCCCC"; document.getElementById('wpSummary').focus(); return false; } return true; } addOnloadHook(addForceSummary);