update files

This commit is contained in:
nuintun 2015-11-25 09:43:15 +08:00
parent d9d77434d6
commit 513d1b0149

View File

@ -36,13 +36,6 @@ module.exports = function (Terminal){
for (; y <= end; y++) {
row = y + this.ydisp;
line = this.lines[row];
if (!line) {
// simple solution in case we have more lines than rows
// could be improved to instead remove first line (and related html element)
return this.reset();
}
out = '';
if (y === this.y && this.cursorState && this.ydisp === this.ybase && !this.cursorHidden) {