Bug #37594
closed"Scroll bottom" "Scroll top" links in Job invocation details are broken
Description
"Scroll bottom" "Scroll top" links in Job invocation details are broken
Description of problem:
After executing an "Ansible command" job the details page shows two links "scroll bottom" and "scroll top" but none of them works.
Steps to Reproduce:
1. Execute a "Remote Ansible Command" job
2. Enter into the Job details page
3. Click "Scroll to bottom" Link
Actual behavior:
Nothing happens
Expected behavior:
The page scrolls down.
Proposed solution:
The javascript code executed on the "a href" not longer works because content is not into "body" tag but into "rails-app-content" div. Replace current javascript code for something similar to below code should fix it:
- "Scroll bottom" link.
{code:java}
$('#rails-app-content').scrollTop($('#rails-app-content').prop("scrollHeight")){code}
- The same way "Scroll top" link could read:
{code:java}$('#rails-app-content').scrollTop(0){code}