User:So9q/ordia-link.js

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 Ordia in the Tools section on items.
 * Forked from https://www.wikidata.org/wiki/User:Fnielsen/scholia-link.js by Fnielsen.
 */

( function ( mw, $ ) {
	var entityId = mw.config.get( 'wbEntityId' );
	if ( !entityId ) {
		return;
	}
	// Add portlet link for item
	mw.util.addPortletLink(
		'p-tb',
		'//ordia.toolforge.org/' + entityId,
		'Ordia',
		't-ordia',
		'This Wikidata item in Ordia'
	);
}( mediaWiki, jQuery ) );