Add doc comment for scroll event

This commit is contained in:
YuviPanda
2016-11-11 16:28:25 -08:00
parent 5712365cac
commit 6dcf7267a5
+6
View File
@@ -1290,6 +1290,12 @@ Terminal.prototype.scroll = function() {
this.updateRange(this.scrollTop);
this.updateRange(this.scrollBottom);
/**
* This event is emitted whenever the terminal is scrolled.
* The one parameter passed is the new y display position.
*
* @event scroll
*/
this.emit('scroll', this.ydisp);
};