Skip to content

Commit

Permalink
assorted formatting tweaks
Browse files Browse the repository at this point in the history
  • Loading branch information
sideshowbarker committed Jan 5, 2011
1 parent 8d6dbe5 commit 86e0d75
Show file tree
Hide file tree
Showing 3 changed files with 10 additions and 4 deletions.
2 changes: 1 addition & 1 deletion anno.js
Original file line number Diff line number Diff line change
Expand Up @@ -168,4 +168,4 @@ document.addEventListener("keyup", function (e) {
annoPanel = null;
}
}, true);
window.addEventListener('load', annotateToc, false);
annotateToc();
8 changes: 7 additions & 1 deletion style.css
Original file line number Diff line number Diff line change
Expand Up @@ -169,7 +169,13 @@ b.other {
#toc,
#toc-full {
margin-top: 36px;
line-height: 80%
}
#toc li,
#toc-full li {
white-space: nowrap;
text-overflow: ellipsis;
overflow:hidden;
line-height: 18px;
}
/* note that ES5 source does not use monospace for symbols */
.symbol {
Expand Down
4 changes: 2 additions & 2 deletions timestamp.js
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ function addTimestamp() {
document.body.appendChild(script);
document.getElementById("timestamp").appendChild(link);
window.jsonp = function (data) {
link.textContent = "Last updated: " + data.repository.pushed_at.substring(0, 10);
link.textContent = "Last\u00A0updated:\u00A0" + data.repository.pushed_at.substring(0, 10);
};
}
window.addEventListener('load', addTimestamp(), false);
addTimestamp();

0 comments on commit 86e0d75

Please sign in to comment.