MediaWiki:Gadget-purgetab.js
Appearance
![]() | This page is loaded as a part of the purgetab gadget, used by 23,812 users. |
/**
* Action link: Purge (Action menu)
*
* @source: http://www.mediawiki.org/wiki/Snippets/Purge_action
* @rev: 5
*/
$( function() {
if ( !$( '#ca-purge' ).length && mw.config.get( 'wgIsArticle' ) ) {
mw.util.addPortletLink(
'p-cactions',
mw.util.wikiGetlink( mw.config.get( 'wgPageName' ) ) + '?action=purge',
mw.config.get( 'skin' ) == 'vector' ? 'Purge' : '*',
'ca-purge',
'Purge the server cache of this page',
'*'
);
}
});