MediaWiki:ExtraTabs.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.
$(document).ready( function($) {
	var username, project;

	if ( $.inArray( mw.config.get( 'wgNamespaceNumber' ), [ 2, 3 ] ) === -1 ) {
		return;
	}

	username = encodeURIComponent(mw.config.get('wgTitle').split("/", 1)[0]);
	project = mw.config.get( 'wgContentLanguage' ) + '.' + mw.config.get( 'wgSiteName' ).toLowerCase() + '.org';

	/*
	Files needing licenses no longer functional.
	mw.util.addPortletLink
	(
		'p-tb',
		'http://toolserver.org/~daniel/WikiSense/UntaggedImages.php?wiki=' + project + '&img_user_text=' + username,
		'Files needing licenses',
		'ca-untagged'
	);
	*/
});