Wikipedia:WikiProject User scripts/Scripts/Edit Top: Difference between revisions
Content deleted Content added
→JavaScript: so it doesn't overlap the featured article star |
→JavaScript: simplify with addonloadhook |
||
Line 28:
// Add an [edit top] link to pages
addOnloadHook(function
// if this is preview page or generated page, stop
if(document.getElementById("wikiPreview") || window.___location.href.indexOf("/wiki/Special:") != -1) return;
Line 45:
if(window.___location.href.indexOf("&action=edit§ion=0") != -1)
document.getElementById("wpSummary").value = "/* Intro */ ";
});
</pre>
|