readme. misc.

This commit is contained in:
Christopher Jeffrey 2013-08-10 10:19:40 -05:00
parent efa0e3c145
commit 86922c7c8b
2 changed files with 2 additions and 2 deletions

View File

@ -1,7 +1,7 @@
# term.js
A full xterm clone written in javascript. Used by
[tty.js](https://github.com/chjj/tty.js).
[**tty.js**](https://github.com/chjj/tty.js).
## Example

View File

@ -1173,7 +1173,7 @@ Terminal.prototype.write = function(data) {
this.x = 0;
}
// TODO: Implement eat_newline_glitch.
// if (this.realX >= this.cols) // break;
// if (this.realX >= this.cols) break;
// this.realX = 0;
this.y++;
if (this.y > this.scrollBottom) {