Jump to content

User:Kharkiv07/loggedout.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.
function loggedOutTalkPage() {
		var loggedOut = mw.util.addPortletLink('p-personal', '#', 'Not logged-in', 'pt-userpage', null, null, '#pt-login');
		loggedOut.innerHTML = '<span style="color: gray;">Not logged-in</span>';
		mw.util.addPortletLink('p-personal', '//en.wikipedia.org/wiki/Special:MyTalk', 'IP talk page', 'pt-mytalk', 'IP talk page', 'n', '#pt-login');
		mw.util.addPortletLink('p-personal', '//en.wikipedia.org/wiki/Special:MyContributions', 'IP contributions', 'pt-mycontris', 'IP contributions', 'y', '#pt-login');
	}
	mw.loader.using('mediawiki.user', function () {
		if (mw.user.isAnon()) {
			$(loggedOutTalkPage);
		}
	});