MediaWiki:Common.js: Difference between revisions
Appearance
No edit summary |
No edit summary |
||
Line 21: | Line 21: | ||
mw.config.get( 'skin' ) === 'monobook' ? '*' : 'Clear cache', | mw.config.get( 'skin' ) === 'monobook' ? '*' : 'Clear cache', | ||
'ca-purge', | 'ca-purge', | ||
' | 'Purge the server cache of this page?', | ||
'*' | '*' | ||
); | ); | ||
} | } | ||
} ); | } ); |
Revision as of 07:57, 6 November 2024
// jQuery + Osano cookies pop-up
mw.loader.using(['jquery.ui'], function() {
$.getScript('//cmp.osano.com/Azyw1RRk4ZCOx2wli/04c9aa84-7b4a-45a8-bb7e-3b3767dd3378/osano.js', function() {
console.log("Osano script loaded.");
});
});
/**
* Add "Purge" content action link.
*
* Dependencies: mediawiki.util
*
* @source www.mediawiki.org/wiki/Snippets/Purge_action
* @revision 2014-05-14
*/
$( function () {
if ( !$( '#ca-purge' ).length && mw.config.get( 'wgIsArticle' ) ) {
mw.util.addPortletLink(
'p-cactions',
mw.util.wikiScript() + '?' + $.param({ title: mw.config.get( 'wgPageName' ), action: 'purge' }),
mw.config.get( 'skin' ) === 'monobook' ? '*' : 'Clear cache',
'ca-purge',
'Purge the server cache of this page?',
'*'
);
}
} );