fix terminal element clearing.

This commit is contained in:
Christopher Jeffrey 2015-07-30 05:08:04 -07:00
parent eeb9038d1e
commit dc95fc6e3c

View File

@ -398,6 +398,7 @@ Terminal.prototype.kill = function() {
this.pty.destroy();
this.pty.kill();
}
this.term.refresh = function() {};
this.term.write('\x1b[H\x1b[J');
};