added u class to spans that need Arial Unicode

This commit is contained in:
Mark Pilgrim
2009-07-17 22:44:11 -04:00
parent 925514c525
commit fe35f3a2a9
+2 -2
View File
@@ -186,7 +186,7 @@ function plainTextOnClick(id) {
}
function hideTOC() {
var toc = '<span class=nm>&#8227;</span> <a href="javascript:showTOC()">show table of contents</a>';
var toc = '<span class="nm u">&#8227;</span> <a href="javascript:showTOC()">show table of contents</a>';
$("#toc").html(toc);
}
@@ -207,6 +207,6 @@ function showTOC() {
toc += '</ol>';
level -= 1;
}
toc = '<span class=nm>&#9662;</span> <a href="javascript:hideTOC()">hide table of contents</a><ol start=0><li><a href=table-of-contents.html><span>&uarr;</span> Full table of contents</a></li>' + toc.substring(4);
toc = '<span class="nm u">&#9662;</span> <a href="javascript:hideTOC()">hide table of contents</a><ol start=0><li><a href=table-of-contents.html><span class=u>&uarr;</span> Full table of contents</a></li>' + toc.substring(4);
$("#toc").html(toc);
}