all repos — honk @ 112c01ed9ce5d18fe5dc84ca652c7146a39ee55b

my fork of honk

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

112c01ed9ce5d18fe5dc84ca652c7146a39ee55b

parent

bab874e9ec656b494e7f199f778378aa4577599a

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);