User:Gerbrant/edit/top.js
// This will add an [edit] link at the top of all pages except preview pages and the main page
// Originally by User:Pile0nades, modified by User:Gerbrant.
// Add an [edit] link to pages
hookEvent("load", function ()
{
if(mw.config.get('wgCanonicalNamespace') == "Special") return;
if(document.getElementById("difference")) return;
if(mw.config.get('wgTitle') == "Main Page") return;
if(mw.config.get('wgAction') == "view")
{
var divContainer = document.createElement("div");
divContainer.innerHTML = '
var coos = document.getElementById("coordinates");
if(coos) coos.style.right = "4.5em";
document.getElementById("content").insertBefore(
divContainer, document.getElementsByTagName("h1")[0]);
}
else if(window.location.href.indexOf("&action=edit§ion=0") != -1)
{
e = document.getElementById("wpSummary");
if(e) e.value = "/* Intro */ " + e.value;
else alert("Cannot find the ‘Edit summary’ textbox.");
}
});