Jump to content

User:Jeremy Cahill/common.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.
//	JCC: start personal code
function abbHeaderLinks( ) {
	$('#pt-mytalk a').text('[Talk]');
	$('#pt-sandbox a').text('[Sand]');
	$('#pt-preferences a').text('[Conf]');
	$('#pt-betafeatures a').text('[Beta]');
	$('#pt-mycourses a').text('[Courses]');
	$('#pt-watchlist a').text('[Watch:L]');
	$('#pt-mycontris a').text('[Contrib]');
	$('#pt-logout a').text('[Out]');
}

function addHeaderLinks( ) {

	//	Book
	$('<li id="pt-book"><a href="/wiki/Special:Book" title="Book">[Book]</a></li>').insertAfter('#pt-betafeatures');
	
	//	Watch:	Edit
	$('<li id="pt-watchedit"><a href="/wiki/Special:EditWatchlist">[Watch:E]</a></li>').insertAfter('#pt-watchlist');	
}

abbHeaderLinks();
addHeaderLinks();

//	JCC: end personal code