fix term.reset().

This commit is contained in:
Christopher Jeffrey
2013-08-14 17:07:39 -05:00
parent a7f5053194
commit 616b25bab7
+1 -1
View File
@@ -2812,7 +2812,7 @@ Terminal.prototype.reverseIndex = function() {
// ESC c Full Reset (RIS).
Terminal.prototype.reset = function() {
Terminal.call(this, this.cols, this.rows);
Terminal.call(this, this.options);
this.refresh(0, this.rows - 1);
};