MediaWiki:Gadget-purgetab.js
Appearance
![]() | This page is loaded as a part of the purgetab gadget, used by 23,812 users. |
/* 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;
var title = (skin == "vector") ? "Purge" : "*";
addPortletLink('p-cactions', url.replace(/([?&]action=)history([&#]|$)/, '$1purge$2'),
title, 'ca-purge', 'Purge cache', '*');
});