moonstripe
Results
2
comments of
moonstripe
maybe add a toggle? sometimes the lifo logs are helpful in debugging live production issues.
I have a simple workaround as follows: ``` document.addEventListener("htmx:wsAfterMessage", e => { const messagesDiv = document.getElementById("messages"); messagesDiv.scrollTop = messagesDiv.scrollHeight; }) ``` Kind of disappointing, since I was trying to build...