Merge pull request #1574 from vincentwoo/patch-1

refreshRowElements argument order was flipped
This commit is contained in:
Daniel Imms
2018-07-19 08:14:08 -07:00
committed by GitHub
+1 -1
View File
@@ -52,7 +52,7 @@ export class DomRenderer extends EventEmitter implements IRenderer {
this._rowContainer.classList.add(ROW_CONTAINER_CLASS);
this._rowContainer.style.lineHeight = 'normal';
this._rowContainer.setAttribute('aria-hidden', 'true');
this._refreshRowElements(this._terminal.rows, this._terminal.cols);
this._refreshRowElements(this._terminal.cols, this._terminal.rows);
this._selectionContainer = document.createElement('div');
this._selectionContainer.classList.add(SELECTION_CLASS);
this._selectionContainer.setAttribute('aria-hidden', 'true');