Bruger:Sam Sailor/common.js

Fra Wikipedia, den frie encyklopædi
// Forkortelser i pt navigation
$( function () {
	document.getElementById('pt-userpage').getElementsByTagName('a')[0].firstChild.nodeValue = 'U';
	document.getElementById('pt-mytalk').getElementsByTagName('a')[0].firstChild.nodeValue = 'T';
	document.getElementById('pt-preferences').getElementsByTagName('a')[0].firstChild.nodeValue = 'P';
	document.getElementById('pt-sandbox').getElementsByTagName('a')[0].firstChild.nodeValue = 'S';
	document.getElementById('pt-watchlist').getElementsByTagName('a')[0].firstChild.nodeValue = 'W';
	document.getElementById('pt-mycontris').getElementsByTagName('a')[0].firstChild.nodeValue = 'C';
	document.getElementById('pt-logout').getElementsByTagName('a')[0].firstChild.nodeValue = 'Out';
});
// Tilføjelser til samme
//$(function () {
//    mw.util.addPortletLink("p-navigation", mw.util.getUrl('Speciel:Tilfældig henvisning'), 'Tilfældig genvej', 'n-randomredirect', 'Find en tilfældig genvej', 'a');
//});

// Automatically tick the "Move subpages" option when moving pages.
var moveSubpagesBox = document.getElementsByName("wpMovesubpages")[0];
if (moveSubpagesBox !== undefined) {
	moveSubpagesBox.checked = true;
	}