Jump to content

User:VarunFEB2003/JsLink.js

From Wikipedia, the free encyclopedia
The printable version is no longer supported and may have rendering errors. Please update your browser bookmarks and please use the default browser print function instead.
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>');