Jump to content

User:Magnus Manske/autodesc.js

From Wikipedia, the free encyclopedia
The printable version is no longer supported and may have rendering errors. Please update your browser bookmarks and please use the default browser print function instead.
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.
/*
To add this to ANY Wikipedia, add
mw.loader.load("//en.wikipedia.org/w/index.php?title=User:Magnus Manske/autodesc.js&action=raw&ctype=text/javascript");
to your common.js user page, or to your global.js page (for all Wikis):
https://meta.wikimedia.org/wiki/Special:MyPage/global.js

To enable it on Wikidata as well, add
var autodesc_on_wikidata = true ;
BEFORE the mw.loader.load line.
*/

$(document).ready ( function () {
	if ( mw.config.get('wgNamespaceNumber') != 0 ) return ; // Article namespace only
	if ( mw.config.get('wgDBname') == 'wikidatawiki' && typeof autodesc_on_wikidata == 'undefined' ) return ; // Not on Wikidata, duh!
	var q = mw.config.get('wgWikibaseItemId') ;
	if ( q === null && mw.config.get('wgDBname') == 'wikidatawiki' ) q = mw.config.get('wgTitle') ;
	if ( typeof q == 'undefined' || q === '' || q === null ) return ;
	$.getJSON ( 'https://tools.wmflabs.org/autodesc/?callback=?' , {
		q:q,
		lang:mw.config.get('wgUserLanguage'),
		mode:'short',
		links:'wikipedia',
		format:'json'
	} , function ( d ) {
		$('#siteSub').show().append ( ': <div style="display:inline">'+d.result+' <small>[<a href="//www.wikidata.org/wiki/'+q+'">'+q+'</a>]</small></div>')
	})
}) ;