all repos — honk @ 7c65fa90965ceda56afbf1a033dab59298392529

my fork of honk

add a scroll down button
Ted Unangst tedu@tedunangst.com
Fri, 15 Nov 2019 15:54:24 -0500
commit

7c65fa90965ceda56afbf1a033dab59298392529

parent

20d0db8381895b0f90be8231e09a5bf2455cdadd

3 files changed, 9 insertions(+), 0 deletions(-)

jump to
M docs/changelog.txtdocs/changelog.txt

@@ -1,5 +1,7 @@

changelog +-- next + -- 0.8.2 ++ Import command to preserve those embarssassing old posts from Twitter.
M views/honkpage.htmlviews/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.jsviews/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) {