Jade/views/chat.html
MrBounty 3266c8787e SSE to WebSocket
I needed to ping pong the content of the message because it was too long
for a SSE event. I swaped to websocket instead
2024-08-05 18:22:51 +02:00

8 lines
306 B
HTML

<div class="chat-container mt-5"
style="padding-bottom: 155px"
hx-indicator="#textarea-control"
hx-ext="ws">
<hx hx-get="/loadChat" hx-trigger="load once" hx-swap="outerHTML"></hx>
<hx hx-get="/loadChatInput" hx-trigger="load once" hx-swap="outerHTML" id="textarea-control"></hx>
</div>