Jump to content

User:Zackmann08/scripts/transclusions.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.
// Insert transclusions link directly below "What links here", on templates only
$(document).ready(function() {
	if (mw.config.get('wgCanonicalNamespace')=='Template') {
		var new_html = '<li id="t-transclusions" class="mw-list-item"><a href="/wiki/Special:WhatLinksHere/' 
		+ mw.config.get('wgPageName') 
		+ '?hidelinks=1&hideredirs=1&limit=999"><span>Transclusions</span></a></li>'
		+ '<li id="t-redirects" class="mw-list-item"><a href="/wiki/Special:WhatLinksHere/' 
		+ mw.config.get('wgPageName') 
		+ '?hidelinks=1&hidetrans=1&limit=999"><span>Redirects</span></a></li>'
		document.getElementById('t-whatlinkshere').insertAdjacentHTML('afterend', new_html)
	}
});