Files
2026-04-10 09:50:36 -04:00

29 lines
1.0 KiB
HTML

<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<style>
body { font-family: sans-serif; padding: 20px; background: #0d0d12; color: #f0f0f5; margin: 0; }
h2 { color: #d64d7f; }
#feed { margin-top: 12px; display: flex; flex-direction: column; gap: 6px; }
.msg { background: #1a1a25; padding: 8px 12px; border-radius: 6px; font-size: 14px; border-left: 3px solid #d64d7f; }
.msg strong { color: #d64d7f; margin-right: 6px; }
</style>
</head>
<body data-chatter-auto-append="false">
<h2>🔴 Live Feed</h2>
<div id="feed" ></div>
<script>
var feed = document.getElementById("feed");
// Listen for real-time messages via the chatter:message event
window.addEventListener("chatter:message", function(event) {
var data = event.detail;
var el = document.createElement("div");
el.className = "msg";
el.innerHTML = "" + data.username + "" + data.text;
feed.prepend(el);
if (feed.children.length > 50) feed.lastChild.remove();
});
</script>
</body></html>