Jump to content

User:Waldyrious/sinceContribs.js

From Wikipedia, the free encyclopedia
This is an old revision of this page, as edited by Waldyrious (talk | contribs) at 00:51, 20 May 2011 (implement). The present address (URL) is a permanent link to this revision, which may differ significantly from the current revision.
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.
function addSinceLinks() {
  var ul = document.getElementById("contentSub").nextElementSibling.nextElementSibling.nextElementSibling.nextElementSibling;
  for(i=0; i<ul.children.length; i++) {
    h = ul.children[i].children[3].text ? ul.children[i].children[3] : ul.children[i].children[2];
    pipe = document.createTextNode(" | ");
    cur = ul.children[i].children[1].cloneNode(true);
    cur.href = timestamp.href.concat("&diff=cur")
    ul.children[i].insertBefore(cur,h);
    ul.children[i].insertBefore(pipe,h);
}

if (wgCanonicalSpecialPageName == 'Contributions' && wgAction == 'view') addSinceLinks()