From 61201525a8e7e253d71145f670a5a1f1599bb6d1 Mon Sep 17 00:00:00 2001 From: Daniel Imms Date: Wed, 3 Aug 2016 18:27:19 -0700 Subject: [PATCH] Remaining jsdoc --- src/xterm.js | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/src/xterm.js b/src/xterm.js index 0569e9a5..0d8a33ed 100644 --- a/src/xterm.js +++ b/src/xterm.js @@ -327,6 +327,10 @@ /** * Represents the viewport of a terminal, the visible area within the larger buffer of output. * Logic for the virtual scroll bar is included in this object. + * @param {Terminal} terminal The Terminal object. + * @param {HTMLElement} viewportElement The DOM element acting as the viewport + * @param {HTMLElement} charMeasureElement A DOM element used to measure the character size of + * the terminal. */ function Viewport(terminal, viewportElement, charMeasureElement) { this.terminal = terminal;