add a scroll down button
Ted Unangst tedu@tedunangst.com
Fri, 15 Nov 2019 15:54:24 -0500
3 files changed,
9 insertions(+),
0 deletions(-)
M
docs/changelog.txt
→
docs/changelog.txt
@@ -1,5 +1,7 @@
changelog +-- next + -- 0.8.2 ++ Import command to preserve those embarssassing old posts from Twitter.
M
views/honkpage.html
→
views/honkpage.html
@@ -15,6 +15,7 @@ </div>
{{ if and .HonkCSRF (not .IsPreview) }} <div class="info" id="refreshbox"> <p><button onclick="refreshhonks(this)">refresh</button><span></span> +<button onclick="oldestnewest(this)">scroll down</button> </div> {{ end }} <div id="honksonpage">
M
views/honkpage.js
→
views/honkpage.js
@@ -67,6 +67,12 @@
var lehonkform = document.getElementById("honkform") var lehonkbutton = document.getElementById("honkingtime") +function oldestnewest(btn) { + var els = document.getElementsByClassName("glow") + if (els.length) { + els[els.length-1].scrollIntoView() + } +} function removeglow() { var els = document.getElementsByClassName("glow") while (els.length) {