Welcome to the Lylat Wiki, all about the Star Fox series! If you'd like to help out, please take a look at our community portal.

Difference between revisions of "MediaWiki:Gadget-purgetab.js"

From Lylat Wiki, your source on Star Fox information. By Fans, for Fans.
Jump to navigationJump to search
*>Edokter
(per edit request)
 
m (1 revision)
 
(No difference)

Latest revision as of 05:32, 10 March 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',
            '*'
        );
    }
});