diff src/get_chat.js.luan @ 68:329c3f70fd78

UI
author Franklin Schmidt <fschmidt@gmail.com>
date Thu, 06 Mar 2025 19:43:18 -0700
parents 6cfef9850520
children a63faf49e1d7
line wrap: on
line diff
--- a/src/get_chat.js.luan	Thu Mar 06 12:13:31 2025 -0700
+++ b/src/get_chat.js.luan	Thu Mar 06 19:43:18 2025 -0700
@@ -32,14 +32,20 @@
 			<span><%
 				local user_id = chat.other_user_id(user.id)
 				local other_user = get_user_by_id(user_id) or error(user_id)
-				%><a people href="javascript:openPeople()"><%= other_user.name_html() %></a><span online="<%= other_user.id %>"></span><%
+				%><%= other_user.name_html() %><span online="<%= other_user.id %>"></span><%
 				local voice_url = other_user.voice_url
 				if voice_url ~= nil then
 					%> <a href="<%=voice_url%>" title="Call" target="voice"><img phone src="/images/call.svg"></a><%
 				end
 			%></span>
 		</h3>
-		<button onclick='deleteChat()'>Delete</button>
+		<span pulldown>
+			<img onclick="clickMenu(this)" src="/images/menu.svg">
+			<div>
+				<span onclick="openPeople()">People in Chat</span>
+				<span onclick="deleteChat()">Delete Chat</span>
+			</div>
+		</span>
 	</div>
 	<div main>
 <%