Merge pull request #4300 from jakemcdermott/output-updown

get more events on page down or up when needed

Reviewed-by: https://github.com/softwarefactory-project-zuul[bot]
This commit is contained in:
softwarefactory-project-zuul[bot] 2019-07-09 17:12:27 +00:00 committed by GitHub
commit e34833c8cb
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -422,10 +422,18 @@ function menuLast () {
function down () {
scroll.moveDown();
if (scroll.isBeyondLowerThreshold()) {
next();
}
}
function up () {
scroll.moveUp();
if (scroll.isBeyondUpperThreshold()) {
previous();
}
}
function togglePanelExpand () {