qute:log: Scroll to bottom on load

This commit is contained in:
Florian Bruhin 2014-08-29 07:38:07 +02:00
parent d8fa2e8ef0
commit c0a88bf3d0

View File

@ -1,5 +1,13 @@
{% extends "base.html" %}
{% block script %}
window.onload=toBottom;
function toBottom() {
window.scrollTo(0, document.body.scrollHeight);
}
{% endblock %}
{% block style %}
body {
background-color: black;