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

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 () {