MediaWiki:Common.js

From KeenWiki
Jump to navigation Jump to search

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 / Edge: Hold Ctrl while clicking Refresh, or press Ctrl-F5
  • Opera: Go to Menu → Settings (Opera → Preferences on a Mac) and then to Privacy & security → Clear browsing data → Cached images and files.
/* 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(/&section=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);