Content deleted Content added
Mike Dillon (talk | contribs) mNo edit summary |
Mike Dillon (talk | contribs) No edit summary |
||
Line 20:
h5("Page history"));
var historyList = ul();
var historyPBody = div({ "class": "pBody" }, historyList);
historyPortlet.appendChild(historyPBody);
}
Line 81:
historyList.appendChild(li(
a({ "href": itemUrl, "title": historyItems[n] }, itemLabel)));
}
var clearHistoryLink = a({ "href": "#", "title": "Clear page history" }, em("clear history"));
clearHistoryLink.onclick = clearHistory;
historyPBody.appendChild(div(
{ "style": "padding-top: 1em; text-align: right" }, clearHistoryLink));
}
}
|