Jump to content

User:VarunFEB2003/EmailLink.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.
// 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 Twinkle prefs 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="Email someone!">' + 
		'<span style="color: transparent">.</span><a href="' + pre + 'Special:EmailUser">Email</a></li>');