mirror of
https://git.proxmox.com/git/mirror_xterm.js
synced 2025-10-04 17:29:10 +00:00
Fix variable name
This commit is contained in:
parent
4e35904392
commit
f09918f0d2
@ -2299,12 +2299,12 @@ Terminal.prototype.reset = function() {
|
|||||||
var customKeyEventHandler = this.customKeyEventHandler;
|
var customKeyEventHandler = this.customKeyEventHandler;
|
||||||
var cursorBlinkInterval = this.cursorBlinkInterval;
|
var cursorBlinkInterval = this.cursorBlinkInterval;
|
||||||
var inputHandler = this.inputHandler;
|
var inputHandler = this.inputHandler;
|
||||||
var buf = this.buffers;
|
var buffers = this.buffers;
|
||||||
Terminal.call(this, this.options);
|
Terminal.call(this, this.options);
|
||||||
this.customKeyEventHandler = customKeyEventHandler;
|
this.customKeyEventHandler = customKeyEventHandler;
|
||||||
this.cursorBlinkInterval = cursorBlinkInterval;
|
this.cursorBlinkInterval = cursorBlinkInterval;
|
||||||
this.inputHandler = inputHandler;
|
this.inputHandler = inputHandler;
|
||||||
this.buffers = buf;
|
this.buffers = buffers;
|
||||||
this.refresh(0, this.rows - 1);
|
this.refresh(0, this.rows - 1);
|
||||||
this.viewport.syncScrollArea();
|
this.viewport.syncScrollArea();
|
||||||
};
|
};
|
||||||
|
Loading…
Reference in New Issue
Block a user