Skip to content

Commit

Permalink
Add jsdoc back, was lost in merge
Browse files Browse the repository at this point in the history
  • Loading branch information
Tyriar committed May 14, 2017
1 parent cf863d4 commit 5fb3097
Showing 1 changed file with 5 additions and 0 deletions.
5 changes: 5 additions & 0 deletions src/xterm.js
Original file line number Diff line number Diff line change
Expand Up @@ -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++) {
Expand Down

0 comments on commit 5fb3097

Please sign in to comment.