User:Daniel Mietchen/disambiguator.js

From Wikidata
Jump to navigation Jump to search

Note: After publishing, you may have to bypass your browser's cache to see the changes.

  • Firefox / Safari: Hold Shift while clicking Reload, or press either Ctrl-F5 or Ctrl-R (⌘-R on a Mac)
  • Google Chrome: Press Ctrl-Shift-R (⌘-Shift-R on a Mac)
  • Internet Explorer / Edge: Hold Ctrl while clicking Refresh, or press Ctrl-F5
  • Opera: Press Ctrl-F5.
/*
 * Simple script to add a link to the Author Disambiguator in the Tools section on items.
 */

( function ( mw, $ ) {
	var entityId = mw.config.get( 'wbEntityId' );
	if ( !entityId ) {
		return;
	}
	// Add portlet link for item
	mw.util.addPortletLink(
		'p-tb',
		'//tools.wmflabs.org/author-disambiguator/author_item_oauth.php?id=' + entityId,
		'Author Disambiguator (author)',
		't-disambig',
		'View this author\'s record in the Author Disambiguator'
	);
	mw.util.addPortletLink(
		'p-tb',
		'//tools.wmflabs.org/author-disambiguator/work_item_oauth.php?id=' + entityId,
		'Author Disambiguator (work)',
		't-disambig',
		'View this work\'s record in the Author Disambiguator'
	);
}( mediaWiki, jQuery ) );