Jump to content

User:Novem Linguae/Scripts/SpecialNewPagesFeedBetaTestLink.js

From Wikipedia, the free encyclopedia
Note: After saving, you have to bypass your browser's cache to see the changes. Google Chrome, Firefox, Microsoft Edge and Safari: Hold down the ⇧ Shift key and click the Reload toolbar button. For details and instructions about other browsers, see Wikipedia:Bypass your cache.
// Load the Vue rewrite of the PageTriage Page Curation toolbar
// current status as of March 2025: the vue toolbar rewrite is the default, and the old toolbar can be turned back on with ?pagetriage_ui=old

$.when( mw.loader.using( [ 'mediawiki.util' ] ), $.ready ).then( () => {
	mw.util.addPortletLink(
		'p-navigation',
		mw.util.getUrl( 'Special:NewPagesFeed' ),
		'New pages feed (beta)',
		'pt-pagecuration-beta',
		'View the new pages feed'
	);

	mw.util.addPortletLink(
		'p-navigation',
		mw.util.getUrl( 'Special:NewPagesFeed' ) + '?pagetriage_ui=old',
		'New pages feed (old)',
		'pt-pagecuration-beta',
		'View the new pages feed'
	);
} );