// Install with:
// <code><nowiki> {{subst:Iusc|User:DannyS712/Edit notice.js}} </nowiki></code>
// or with
// <code><nowiki> importScript( 'User:DannyS712/Edit notice.js' ); // Backlink: ] </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){
$('#ca-pageEditNotice').addClass('new');
}
} );
}
});