mirror of
https://git.proxmox.com/git/mirror_xterm.js
synced 2025-10-04 10:56:08 +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 cursorBlinkInterval = this.cursorBlinkInterval;
|
||||
var inputHandler = this.inputHandler;
|
||||
var buf = this.buffers;
|
||||
var buffers = this.buffers;
|
||||
Terminal.call(this, this.options);
|
||||
this.customKeyEventHandler = customKeyEventHandler;
|
||||
this.cursorBlinkInterval = cursorBlinkInterval;
|
||||
this.inputHandler = inputHandler;
|
||||
this.buffers = buf;
|
||||
this.buffers = buffers;
|
||||
this.refresh(0, this.rows - 1);
|
||||
this.viewport.syncScrollArea();
|
||||
};
|
||||
|
Loading…
Reference in New Issue
Block a user