MediaWiki:Common.js

From TestWiki
Revision as of 15:52, 19 March 2016 by HappyDog (Talk | contribs) (Finish jQuery update, as this is required to ensure events are triggered properly.)

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) {
        $("#mw-input-wpExpiry").val("infinite").change();
        $("#mw-input-wpReason-other").val("Spamming");
        $("#mw-input-wpHideUser").attr("checked", true);
    }
});