From e28425ce02d60f0ecf42ab1b622a27474cdb0a61 Mon Sep 17 00:00:00 2001 From: mattn Date: Mon, 15 Mar 2010 18:11:15 +0900 Subject: [PATCH] use fixed font. --- showtty.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/showtty.js b/showtty.js index 2b80b09..dc12c4e 100644 --- a/showtty.js +++ b/showtty.js @@ -49,7 +49,7 @@ var setTextChunk = function (tb, r, index, stx) { var setBoldChunk = function (tb, r, index, stx) { for (var i = 0; i < r.length; i++) { - tb.arr[index][i+stx].style.fontWeight = r.charAt(i) == 0 ? 'normal' : 'bold'; + tb.arr[index][i+stx].style.fontWeight = r.charAt(i) == 0 ? 'normal' : 'normal'; } };