Add jsdoc back, was lost in merge

This commit is contained in:
Daniel Imms
2017-05-14 14:28:06 -07:00
parent cf863d4849
commit 5fb30979c1
+5
View File
@@ -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++) {