diff src/chat.js @ 48:7628fd0e3560

minor
author Franklin Schmidt <fschmidt@gmail.com>
date Fri, 28 Feb 2025 19:59:27 -0700
parents 42b741a1d5c6
children 9298b04607ae
line wrap: on
line diff
--- a/src/chat.js	Fri Feb 28 19:47:13 2025 -0700
+++ b/src/chat.js	Fri Feb 28 19:59:27 2025 -0700
@@ -17,7 +17,7 @@
 }
 
 function selectChat(div,email) {
-	document.querySelector('div[content]').setAttribute('show','posts');
+	document.querySelector('div[chat_content]').setAttribute('show','posts');
 	let chatId = div.getAttribute('chat');
 	if( chatId === currentChatId )
 		return;
@@ -34,7 +34,7 @@
 }
 
 function back() {
-	document.querySelector('div[content]').setAttribute('show','chats');
+	document.querySelector('div[chat_content]').setAttribute('show','chats');
 }
 
 function gotChat(html) {