Description
We have a nice menu now to link down to subsections on the page, using id
attributes and URL hashes, like this:
https://code.publiclab.org/#fto-author
The code for the menu looks like this:
Lines 79 to 82 in eeecfa6
Let's make each header into a link as well, so they're easy to "deep link" to, so you get right to the correct section. This will require adding an A tag around the text of each header, like <a href="#fto-author">...</a>
, similarly to the above.
However, some sections get edited live by JavaScript, for example to update the counts, in sections like this, "Stale issues (COUNT)":
For those, we need to see if making that section into a link breaks this functionality, or if we need to adjust other areas of code to accommodate them being links.
This is therefore a little more complex than a first-timers-only issue! We'd still love help on it however!