From 5fb30979c1b81236c7ab67e499befe65d027d9e3 Mon Sep 17 00:00:00 2001 From: Daniel Imms Date: Sun, 14 May 2017 14:28:06 -0700 Subject: [PATCH] Add jsdoc back, was lost in merge --- src/xterm.js | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/src/xterm.js b/src/xterm.js index fb5301c3d5..b4bcdcd4de 100644 --- a/src/xterm.js +++ b/src/xterm.js @@ -1118,6 +1118,11 @@ Terminal.prototype.refresh = function(start, end) { } }; +/** + * Queues linkification for the specified rows. + * @param {number} start The row to start from (between 0 and this.rows - 1). + * @param {number} end The row to end at (between start and this.rows - 1). + */ Terminal.prototype.queueLinkification = function(start, end) { if (this.linkifier) { for (let i = start; i <= end; i++) {