Merge pull request #4941 from mabashian/3727-output-scroll

Removes restriction on scrolling for output fewer than 50 lines

Reviewed-by: https://github.com/apps/softwarefactory-project-zuul
This commit is contained in:
softwarefactory-project-zuul[bot] 2019-10-09 13:46:46 +00:00 committed by GitHub
commit fff8664219
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -230,8 +230,7 @@ function canStartFollowing () {
}
if (followOnce && // one-time activation from top of first page
scroll.isBeyondUpperThreshold() &&
slide.getTailCounter() - slide.getHeadCounter() >= OUTPUT_PAGE_SIZE) {
scroll.isBeyondUpperThreshold()) {
followOnce = false;
return true;