From fe35f3a2a9c1b1d33032408f7ad220ea51ca63bf Mon Sep 17 00:00:00 2001 From: Mark Pilgrim Date: Fri, 17 Jul 2009 22:44:11 -0400 Subject: [PATCH] added u class to spans that need Arial Unicode --- j/dip3.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/j/dip3.js b/j/dip3.js index d557310..24bb47f 100644 --- a/j/dip3.js +++ b/j/dip3.js @@ -186,7 +186,7 @@ function plainTextOnClick(id) { } function hideTOC() { - var toc = ' show table of contents'; + var toc = ' show table of contents'; $("#toc").html(toc); } @@ -207,6 +207,6 @@ function showTOC() { toc += ''; level -= 1; } - toc = ' hide table of contents
  1. Full table of contents
  2. ' + toc.substring(4); + toc = ' hide table of contents
    1. Full table of contents
    2. ' + toc.substring(4); $("#toc").html(toc); }