User:InvalidOS/vector.js
Appearance
Code that you insert on this page could contain malicious content capable of compromising your account. If you import a script from another page with "importScript", "mw.loader.load", "iusc", or "lusc", take note that this causes you to dynamically load a remote script, which could be changed by others. Editors are responsible for all edits and actions they perform, including by scripts. User scripts are not centrally supported and may malfunction or become inoperable due to software changes. A guide to help you find broken scripts is available. If you are unsure whether code you are adding to this page is safe, you can ask at the appropriate village pump. This code will be executed when previewing this page. |
![]() | The accompanying .css page for this skin can be added at User:InvalidOS/vector.css. |
// Add a second sandbox tab to the top menu, and a link to [[Special:RecentChanges]]
if (document.getElementById('pt-sandbox'))
{
var inner='<a href="/wiki/User:InvalidOS/sandbox1" title="Sandbox 1">Sandbox 1</a>';
var append='<li id="pt-sandbox-2" title="Also My Sandbox"><a href="/wiki/User:InvalidOS/sandbox2" title="Sandbox 2">Sandbox 2</a></li><li id="pt-recent", title="Special:RecentChanges"><a href="/wiki/Special:RecentChanges?damaging=likelybad%3Bverylikelybad&hidebots=1&hideWikibase=1&limit=50&days=7&urlversion=2">Recent Changes</a></li>';
var el = document.getElementById('pt-sandbox');
el.innerHTML = inner;
el.insertAdjacentHTML("afterend",append);
}
/*
if (document.getElementById('ca-talk'))
{
var append2='<li id="ca-talk"><span><a href="/wiki/Special:PrefixIndex" rel="del-discussion" title="Deletion discussions [-]" accesskey="-">XfDs</a></span></li>';
var el = document.getElementById('pt-sandbox');
el.innerHTML = inner;
el.insertAdjacentHTML("afterend",append);
}
*/
//Add a link to view any deletion discussions the article may have
/*
var delTab = document.getElementById("p-cactions").getElementsByTagName('ul')[0];
var li = document.createElement("LI");
var tabT = "&title=Special%3ASearch&go=Go&ns0=1";
var text;
var moretext = document.createTextNode("Deletion discussions");
var text2 = "<a href='/w/index.php?search=Wikipedia%3ARedirects+for+discussion/" + mw.config.get('wgCanonicalTitle') + "&title=Special%3ASearch&go=Go&ns0=1'>";
var redirect = document.createElement("LI");
var ar = document.createElement("A");
var moretext2 = document.createTextNode("Redirect?");
redirect.appendChild();
ar.setAttribute("href", text2);
ar.appendChild(moretext2);
var a = document.createElement("A");
if (mw.config.get('wgCanonicalNamespace') === "" && mw.config.get('wgTitle') != "Main Page")
{
text = "<a href='/w/index.php?search=Wikipedia%3AArticles+for+Deletion/" + mw.config.get('wgTitle') + tabT + "'>" + tabT + "</a>";
delTab.appendChild(li);
}
else if (mw.config.get('wgCanonicalNamespace') === "User" || mw.config.get('wgCanonicalNamespace') === "Draft" ||
mw.config.get('wgCanonicalNamespace') === "Wikipedia" || mw.config.get('wgCanonicalNamespace') === "Help" ||
mw.config.get('wgCanonicalNamespace') === "Gadget" || mw.config.get('wgCanonicalNamespace') === "Gadget Definition" ||
mw.config.get('wgCanonicalNamespace') === "Education Program" || mw.config.get('wgCanonicalNamespace') === "Special" ||
mw.config.get('wgTitle') === "Main Page")
{
text = "/w/index.php?search=Wikipedia%3AMiscellany+for+Deletion/" + mw.config.get('wgTitle') + tabT;
a.appendChild(moretext);
a.setAttribute("href", text);
li.appendChild(a);
delTab.appendChild(li);
}
else if (mw.config.get('wgCanonicalNamespace') === "Category")
{
text = document.createTextNode("/w/index.php?search=Wikipedia%3ACategories+for+Discussion/" + mw.config.get('wgTitle') + tabT);
a.appendChild(moretext);
a.setAttribute("href", text);
li.appendChild(a);
delTab.appendChild(li);
}
else if (mw.config.get('wgCanonicalNamespace') === "Template" || mw.config.get('wgCanonicalNamespace') === "Module")
{
text = document.createTextNode("/w/index.php?search=Wikipedia%3ATemplates+for+Discussion/" + mw.config.get('wgTitle') + tabT);
a.appendChild(moretext);
a.setAttribute("href", text);
li.appendChild(a);
delTab.appendChild(li);
}
delTab.appendChild(redirect);
*/
$.when( mw.loader.using( 'mediawiki.util' ), $.ready ).then( function () {
mediawiki.util.addPortletLink('p-cactions', mediawiki.util.getUrl('Special:MyPage/sandbox'), 'Sandbox', 'pt-sandy');
} );