MediaWiki:Common.js

From TestWiki
Revision as of 15:47, 19 March 2016 by HappyDog (Talk | contribs) (Partial switch to jQuery to fix broken script (due to id being removed from blockip form in MW upgrade))

Jump to: navigation, 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: Hold Ctrl while clicking Refresh, or press Ctrl-F5
  • Opera: Clear the cache in Tools → Preferences
$(document).ready(function() {
// Default delete message.
    $("#deleteconfirm").find("#wpReason").val("Junk/spam");
 
// Default block settings.
    if ($("body.mw-special-Block").length > 0) {
        document.getElementById("wpBlockExpiry").value = "infinite";
        document.getElementById("wpBlockExpiry").onchange();
        document.getElementById("mw-bi-reason").value = "Spamming";
        document.getElementById("wpHideName").checked = true;
    }
});