mirror of
https://github.com/ansible/awx.git
synced 2026-01-12 18:40:01 -03:30
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:
commit
e34833c8cb
@ -422,10 +422,18 @@ function menuLast () {
|
||||
|
||||
function down () {
|
||||
scroll.moveDown();
|
||||
|
||||
if (scroll.isBeyondLowerThreshold()) {
|
||||
next();
|
||||
}
|
||||
}
|
||||
|
||||
function up () {
|
||||
scroll.moveUp();
|
||||
|
||||
if (scroll.isBeyondUpperThreshold()) {
|
||||
previous();
|
||||
}
|
||||
}
|
||||
|
||||
function togglePanelExpand () {
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user