Skip to content
Snippets Groups Projects
Commit bf099d8f authored by Benjamin Bertrand's avatar Benjamin Bertrand
Browse files

Auto-scroll to item comment form

Scroll up to ensure the from input is not hidden below the navbar.

See https://github.com/twbs/bootstrap/issues/1768
parent 7ec55dbe
No related branches found
No related tags found
No related merge requests found
$(document).ready(function() {
// scroll up to avoid having the form input
// hidden under the navbar
if (location.hash == "#text") {
scrollBy(0, -100);
}
var converter = new showdown.Converter({
simplifiedAutoLink: true
});
......
......@@ -62,7 +62,7 @@
<div class="card-body item-comment">{{ comment.text }}</div>
</div>
{% endfor %}
<a class="btn btn-primary" href="{{ url_for('inventory.comment_item', ics_id=item.ics_id) }}">Comment</a>
<a class="btn btn-primary" href="{{ url_for('inventory.comment_item', ics_id=item.ics_id) }}#text">Comment</a>
<hr>
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment