Merge pull request #236 from Tyriar/235_fix_scroll_to_top_on_app_mode

Disable onScroll event during application mode
This commit is contained in:
Daniel Imms 2016-08-21 00:58:47 -07:00 committed by GitHub
commit fc16752cec

View File

@ -425,6 +425,10 @@
* @param {Event} ev The scroll event.
*/
Viewport.prototype.onScroll = function(ev) {
if (this.isApplicationMode) {
// Scrolling via the scroll bar is disabled during application mode
return;
}
var newRow = Math.round(this.viewportElement.scrollTop / this.currentRowHeight);
var diff = newRow - this.terminal.ydisp;
this.terminal.scrollDisp(diff, true);