MediaWiki:Common.js

From TestWiki
Revision as of 16:15, 19 March 2016 by HappyDog (Talk | contribs) (Turns out it's because the field is always present in the form - therefore re-use this rather than recreating it.)

(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)
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").change();
 
// Default block settings.
    if ($("body.mw-special-Block").length > 0) {
        var $HideUser = $("#mw-input-wpHideUser");
        if ($HideUser.length > 0) {
            $("#mw-input-wpExpiry").val("infinite").change();
            $("#mw-input-wpReason").val("Spamming").change();
 
            $HideUser.attr("checked", true).change();
            $("#mw-input-wpConfirm").val("1").change();
        }
    }
});