Jump to content

User:The Evil IP address/blp.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.
if (mw.config.get('wgNamespaceNumber') === 0 && mw.config.get('wgAction') == 'edit') {
	$.getJSON(
        mw.util.wikiScript( 'api' ), 
	{
	format: 'json',
	action: 'query',
	titles: mw.config.get('wgPageName'),
	prop: 'categories',
	cllimit: '50',
	clshow: 'hidden',
	indexpageids: true
        },
        function( obj ) {
			$.each(obj.query.pages[obj.query.pageids[0]].categories, function (i, v) {
				if (v.title == 'Category:All orphaned articles') {
					$.getJSON(
					mw.util.wikiScript('api'), 
					{
					format: 'json',
					action: 'parse',
					text: '{{BLP editintro}}',
					title: mw.config.get('wgPageName')
					},
					function (data) {
						$('div#jump-to-nav').after(data.parse.text['*']);
					}
			    	);	
		    	}	
			}
		);
	}
	);
}