diff --git a/html_orig/js/app.js b/html_orig/js/app.js index 838421a..9d0b44d 100644 --- a/html_orig/js/app.js +++ b/html_orig/js/app.js @@ -1350,13 +1350,13 @@ var Screen = (function () { if (num != H || num2 != W) { _rebuild(num, num2); } - console.log("Size ",num, num2); + // console.log("Size ",num, num2); // Cursor position num = parse2B(str, i); i += 2; // row num2 = parse2B(str, i); i += 2; // col cursorSet(num, num2); - console.log("Cursor at ",num, num2); + // console.log("Cursor at ",num, num2); // Attributes num = parse2B(str, i); i += 2; // fg bg bold hidden @@ -1364,7 +1364,7 @@ var Screen = (function () { cursor.bg = (num & 0xF0) >> 4; cursor.bold = !!(num & 0x100); cursor.hidden = !(num & 0x200); - console.log("FG ",cursor.fg, ", BG ", cursor.bg,", BOLD ", cursor.bold, ", HIDE ", cursor.hidden); + // console.log("FG ",cursor.fg, ", BG ", cursor.bg,", BOLD ", cursor.bold, ", HIDE ", cursor.hidden); fg = cursor.fg; bg = cursor.bg; @@ -1380,11 +1380,11 @@ var Screen = (function () { fg = num & 0x0F; bg = (num & 0xF0) >> 4; bold = !!(num & 0x100); - console.log("Switch to ",fg,bg,bold); + // console.log("Switch to ",fg,bg,bold); } else if (jc == SEQ_REPEAT) { num = parse2B(str, i); i += 2; - console.log("Repeat x ",num); + // console.log("Repeat x ",num); for (; num>0 && ci0 ? e(s) : " "; x.style.opacity = s.length > 0 ? 1 : 0.2; }); diff --git a/html_orig/jssrc/term.js b/html_orig/jssrc/term.js index 217e8ba..d46cb40 100644 --- a/html_orig/jssrc/term.js +++ b/html_orig/jssrc/term.js @@ -158,13 +158,13 @@ var Screen = (function () { if (num != H || num2 != W) { _rebuild(num, num2); } - console.log("Size ",num, num2); + // console.log("Size ",num, num2); // Cursor position num = parse2B(str, i); i += 2; // row num2 = parse2B(str, i); i += 2; // col cursorSet(num, num2); - console.log("Cursor at ",num, num2); + // console.log("Cursor at ",num, num2); // Attributes num = parse2B(str, i); i += 2; // fg bg bold hidden @@ -172,7 +172,7 @@ var Screen = (function () { cursor.bg = (num & 0xF0) >> 4; cursor.bold = !!(num & 0x100); cursor.hidden = !(num & 0x200); - console.log("FG ",cursor.fg, ", BG ", cursor.bg,", BOLD ", cursor.bold, ", HIDE ", cursor.hidden); + // console.log("FG ",cursor.fg, ", BG ", cursor.bg,", BOLD ", cursor.bold, ", HIDE ", cursor.hidden); fg = cursor.fg; bg = cursor.bg; @@ -188,11 +188,11 @@ var Screen = (function () { fg = num & 0x0F; bg = (num & 0xF0) >> 4; bold = !!(num & 0x100); - console.log("Switch to ",fg,bg,bold); + // console.log("Switch to ",fg,bg,bold); } else if (jc == SEQ_REPEAT) { num = parse2B(str, i); i += 2; - console.log("Repeat x ",num); + // console.log("Repeat x ",num); for (; num>0 && ci0 ? e(s) : " "; x.style.opacity = s.length > 0 ? 1 : 0.2; }); diff --git a/html_orig/pages/term.php b/html_orig/pages/term.php index 9ba70c7..08f6dd4 100644 --- a/html_orig/pages/term.php +++ b/html_orig/pages/term.php @@ -31,14 +31,11 @@ -->About - - -