all repos — honk @ 7652dd8d7768324b4ea00759109bb5f9a94bd3b6

my fork of honk

textContent not value
Anirudh Oppiliappan x@icyphox.sh
Tue, 08 Nov 2022 20:30:18 +0530
commit

7652dd8d7768324b4ea00759109bb5f9a94bd3b6

parent

f87248c968b887388166d876bd8b9dabd22bc695

1 files changed, 2 insertions(+), 2 deletions(-)

jump to
M views/local.jsviews/local.js

@@ -18,6 +18,6 @@ return day + " " + month + year;

} } -var honkdate = document.getElementById("honkdate").value; +var honkdate = document.getElementById("honkdate").textContent; const ts = Date.parse(honkdate); -honkdate.value = timeSince(ts); +honkdate.textContent = timeSince(ts);