On November 6th, 2024, the 9,000th article was added to the SuccuWiki!
MediaWiki:Gadget-purgetab.js: Difference between revisions
Jump to navigation
Jump to search
m (1 revision) |
(No difference)
|
Revision as of 19:49, 29 June 2013
/** * 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', '*' ); } });