X-Git-Url: https://jasonwoof.com/gitweb/?a=blobdiff_plain;f=index.html;h=25fdb39eee032dcee234174ae382bfdac64302ed;hb=8e82934389a8bb1b9ea4e1d784bd163d29a7e48f;hp=738d7d7f965e16f25901b806743a544dfa0fa740;hpb=50a84f79b9bf74674a4191db9ae771c63385cd17;p=watch-my-terminal.git diff --git a/index.html b/index.html index 738d7d7..25fdb39 100644 --- a/index.html +++ b/index.html @@ -272,9 +272,9 @@ var $body = $('body'); var socket = io.connect('http://localhost'); var color_to_css = function(i) { - index = i & 0xff + index = 0xff & i; // lighten the basic 8 colors when they're bold - if (i & 0x10000 && index < 8) { + if ((i & 0x10000) && index < 8) { index += 8; } return 'color: #' + palette[index] + '; '; @@ -283,7 +283,7 @@ return 'background-' + color_to_css((i&0x10000) | ((i&0xff00) >> 8)); }; var stylize = function (txt, style) { - if (txt.length == 0 || style == 0) { + if (txt.length == 0 || style == 0x000007) { return txt } css = '' @@ -302,7 +302,7 @@ for (i in term.text) { div = $('
'); txt = '' - a = 0; + a = 0x000007; for (j in term.text[i]) { if (term.attributes[i][j] != a) { if (txt.length) {