Jump to content

User:FreddoR/menu.js

From Wikipedia, the free encyclopedia
This is an old revision of this page, as edited by FreddoR (talk | contribs) at 04:03, 21 July 2015 (Created page with 'var ptLinksToAdd = [ { label: "New pages", title: "Feed of recently created pages", url: "/wiki/Special:N...'). The present address (URL) is a permanent link to this revision, which may differ significantly from the current revision.
(diff) ← Previous revision | Latest revision (diff) | Newer revision → (diff)
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.
var ptLinksToAdd = [
        {
                label: "New pages",
                title: "Feed of recently created pages",
                url: "/wiki/Special:NewPagesFeed",
                index: 5
        },
        {
                label: "AfD",
                url: "/wiki/Wikipedia:Articles_for_Deletion",
                index: 6
        }
 ];
 

var ptList = document.getElementById("p-personal").getElementsByTagName("ul")[0];

for (var i = 0; i < ptLinksToAdd.length; i++) {
	var newListItem = document.createElement("li");
	var newLink = document.createElement("a");
	newLink.setAttribute("href", ptLinksToAdd[i].url);
	if (ptLinksToAdd[i].hasOwnProperty("title")) {
		newLink.setAttribute("title", ptLinksToAdd[i].title);
	}
	newLink.appendChild(document.createTextNode(ptLinksToAdd[i].label));
	newListItem.appendChild(newLink);
	
	if (ptLinksToAdd[i].hasOwnProperty("index")) {
		ptList.insertBefore(newListItem, ptList.childNodes[ptLinksToAdd[i].index]);
	} else {
		ptList.appendChild(newListItem);
	}
}