#4018 closed defect (bug) (fixed)
New Ticket page on Core Trac scrolls user past notices box
Reported by: | RMarks | Owned by: | dd32 |
---|---|---|---|
Milestone: | Priority: | normal | |
Component: | Trac | Keywords: | needs-patch |
Cc: |
Description
When you browse to Core's New Ticket screen, the page is automatically scrolled down a bit which hides the notices that Trac isn't for support or security vulnerabilities.
Change History (3)
Note: See
TracTickets for help on using
tickets.
This is being caused by
$(".trac-autofocus").focus();
which focuses the title field, which if it's below the fold, will scroll the page to it.It looks like that JS comes directly from Trac, and isn't present in our templates.
We could probably use a
<py:match path="...." py:strip="" />
or something to strip thetrac-autofocus
class out of the HTML..(I'm going to have leave this for someone with more Trac customisation experience unfortunately)