Spaces:
Sleeping
Sleeping
Update static/index.html
Browse files- static/index.html +2 -7
static/index.html
CHANGED
@@ -110,9 +110,9 @@
|
|
110 |
<body>
|
111 |
<div id="chat-container" class="rounded p-4 shadow">
|
112 |
<input type="hidden" id="user-id" value="{{ user_id }}">
|
113 |
-
|
114 |
<i class="fas fa-arrow-left"></i>
|
115 |
-
</button>
|
116 |
<div id="chat-history" class="mb-3"></div>
|
117 |
<div class="input-group mb-2">
|
118 |
<textarea id="user-input" class="form-control" rows="2" placeholder="Type your message..." aria-label="Message input"></textarea>
|
@@ -179,11 +179,6 @@ async function sendMessage() {
|
|
179 |
hideTypingIndicator();
|
180 |
}
|
181 |
}
|
182 |
-
|
183 |
-
|
184 |
-
|
185 |
-
|
186 |
-
|
187 |
async function closeChat() {
|
188 |
const userId = document.getElementById("user-id").value;
|
189 |
try {
|
|
|
110 |
<body>
|
111 |
<div id="chat-container" class="rounded p-4 shadow">
|
112 |
<input type="hidden" id="user-id" value="{{ user_id }}">
|
113 |
+
<button type="hidden" id="close-button" class="btn btn-close" aria-label="Close chat" hidden>
|
114 |
<i class="fas fa-arrow-left"></i>
|
115 |
+
</button>
|
116 |
<div id="chat-history" class="mb-3"></div>
|
117 |
<div class="input-group mb-2">
|
118 |
<textarea id="user-input" class="form-control" rows="2" placeholder="Type your message..." aria-label="Message input"></textarea>
|
|
|
179 |
hideTypingIndicator();
|
180 |
}
|
181 |
}
|
|
|
|
|
|
|
|
|
|
|
182 |
async function closeChat() {
|
183 |
const userId = document.getElementById("user-id").value;
|
184 |
try {
|