Wikipedia:WikiProject User scripts/Scripts/Watchlist since: Difference between revisions
Content deleted Content added
major rewrite, works with tabbed browsing too |
tweaks and bugfixes |
||
Line 1:
// Adds a "Changes since last load" link to your watchlist. <pre
addOnloadHook(function () {
Line 5:
// just one little ID attribute would be _so_ nice...
var
while (
if (!
var link = document.createElement('a');
Line 27:
link.onmousedown = fixLinkHref; // react to middle clicks too
frag.appendChild(link);
link.appendChild(document.createTextNode('Changes'));
nsSelectForm.parentNode.insertBefore(frag, nsSelectForm);
});
//
|