Difference between revisions of "User:Microchip08/monobook.js"
Microchip08 (talk | contribs) (New page: // http://meta.wikimedia.org/wiki/User:Microchip08/global.js function liveClock() { liveClock.node = addPortletLink( 'p-personal', wgServer + wgScriptPath + '/index.php?title=' + wgPag...) |
Microchip08 (talk | contribs) |
||
Line 1: | Line 1: | ||
// http://meta.wikimedia.org/wiki/User:Microchip08/global.js | // http://meta.wikimedia.org/wiki/User:Microchip08/global.js | ||
+ | /* UTC clock does not work | ||
+ | Use Mediawiki:monobook.js for .js for all users using the monobook skin | ||
+ | Use Mediawiki:common.js if you really need to | ||
+ | */ | ||
− | function | + | /* Purge caption button */ |
− | { | + | addOnloadHook(function () { |
− | + | 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 cache', 'purge'); | |
− | + | }); | |
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− |
Revision as of 20:11, 12 April 2009
// http://meta.wikimedia.org/wiki/User:Microchip08/global.js /* UTC clock does not work Use Mediawiki:monobook.js for .js for all users using the monobook skin Use Mediawiki:common.js if you really need to */ /* Purge caption button */ addOnloadHook(function () { 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 cache', 'purge'); });