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