User:Paxed/vector.js

From NetHackWiki
< User:Paxed
Revision as of 12:24, 11 November 2012 by Paxed (talk | contribs) (Use custom edit button images from our server)
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)
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: 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.
if (mwCustomEditButtons) {
 mwCustomEditButtons[mwCustomEditButtons.length] = {
     "imageFile": "http://nethackwiki.com/images/nethackwiki/Button_strike.png",
     "speedTip": "Strikethrough",
     "tagOpen": '<s>',
     "tagClose": '</s>',
     "sampleText": "Insert text here"};
 mwCustomEditButtons[mwCustomEditButtons.length] = {
     "imageFile": "http://nethackwiki.com/images/nethackwiki/Button_code.png",
     "speedTip": "Code",
     "tagOpen": '<code>',
     "tagClose": '</code>',
     "sampleText": "Insert text here"};
};


// --------------------------------------------------------
// addPurge
// adds a "purge" tab (after "watch")
// --------------------------------------------------------
addOnloadHook(function () {
    if (wgAction == 'view' && wgCanonicalNamespace != 'Special' &&
        document.URL.indexOf('diff=') <= 0 && document.URL.indexOf('oldid=') <= 0) {
    var hist; var url;
    if (!(hist = document.getElementById('ca-history') )) return;
    if (!(url = hist.getElementsByTagName('a')[0] )) return;
    if (!(url = url.href )) return;
    addPortletLink('p-cactions', url.replace(/([?&]action=)history([&#]|$)/, '$1purge$2'),
                   'Purge', 'ca-purge', 'Purge server cache for this page', '0');
}
});