Changeset 0.23.2 (#155)

This commit is contained in:
2026-03-06 23:17:03 +00:00
parent 4c6555cb06
commit 2dc4514a57
36 changed files with 2784 additions and 192 deletions

View File

@@ -160,7 +160,10 @@ window.addEventListener('unhandledrejection', function(e) {
</button>
</div>
</div>
<div class="sb-section-body" id="sbBodyChats">
<div class="sb-section-body" id="sbBodyChats"
ondragover="event.preventDefault();event.dataTransfer.dropEffect='move';this.classList.add('drag-over')"
ondragleave="this.classList.remove('drag-over')"
ondrop="onChatSectionDrop(event)">
{{/* Populated by UI.renderChatList() */}}
</div>
</div>
@@ -264,6 +267,9 @@ window.addEventListener('unhandledrejection', function(e) {
</div>
</div>
{{/* v0.23.2: Channel context banner — shown for DMs and named channels */}}
<div id="channelContextBanner" class="channel-context-banner" style="display:none;"></div>
{{/* Messages */}}
<div id="chatMessages" class="msg-container">
{{/* Populated by UI.renderMessages() */}}