Jump to content

User:VarunFEB2003/JsLink.js

From Wikipedia, the free encyclopedia
This is the current revision of this page, as edited by MusikAnimal (talk | contribs) at 15:15, 26 September 2016 (Protected "User:VarunFEB2003/JsLink.js": User request within own userspace ([Edit=Require autoconfirmed or confirmed access] (indefinite))). The present address (URL) is a permanent link to this version.
(diff) ← Previous revision | Latest revision (diff) | Newer revision → (diff)
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.
// Replace spaces in username with underscores for comparison to page title
	var fixedUn = wgUserName.replace(/ /g,'_');
	
	var pre = location.protocol + '//' + wgPageContentLanguage + '.' + wgNoticeProject + '.org' + '/w/index.php?title=';

// Add the Js link in the user links line at page tops, next to the usual Preferences link
$('li#pt-preferences').after('<li id="pt-twinklePrefs" style="margin-left:.2em" title="Visit your common.js page!">' + 
		'<span style="color: transparent">.</span><a href="' + pre + 'Special:Mypage/common.js">Common.js</a></li>');