User:BrandonXLF/WhatLinksHere.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.
/*** What Links Here ***/

// Creates a "Links" tool in the right navigation area
// Documentation at [[User:BrandonXLF/WhatLinksHere]]
// By [[User:BrandonXLF]]

$(function() {
	mw.util.addPortletLink(
		'p-cactions',
		"//" + window.location.hostname + mw.config.get('wgArticlePath').replace('$1', "Special:Whatlinkshere/" + encodeURIComponent(mw.config.get('wgPageName'))),
		'Links',
		'whatlinks',
		'Run the "what links here" tool'
	);
});