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.
// Install with:
// <code><nowiki>		{{subst:Iusc|User:DannyS712/Edit notice.js}}																		</nowiki></code>
// or with
// <code><nowiki>		importScript( 'User:DannyS712/Edit notice.js' ); // Backlink: [[User:DannyS712/Edit notice.js]] 					</nowiki></code> 
//
// If forking this script, please note my contributions / give me credit
mw.loader.using( 'mediawiki.util' ).done( function() {
	if (mw.config.get('wgNamespaceNumber') != -1) {
		var page = 'Template:Editnotices/Page/' + mw.config.get('wgPageName');
		mw.util.addPortletLink ( 'p-views', 'https://en.wikipedia.org/w/index.php?title=' + page + '&redirect=no', 'Edit notice', 'ca-pageEditNotice', 'View edit notice');
		var get_EN = {
			action: 'query',
			prop: 'revisions',
			rvprop: 'ids',
			titles: page,
			format: 'json'
		};
		$.get( mw.config.get( 'wgScriptPath' ) + '/api.php', get_EN, function( data ) {
			// console.log( data );
			if (data && data.query && data.query.pages && data.query.pages["-1"]){
				$('#ca-pageEditNotice').addClass('new');
			}
		} );
	}
});