()
| 382 | } |
| 383 | |
| 384 | function showLoadingIndicator() { |
| 385 | if (!currentAssistantMsg) return; |
| 386 | let indicator = currentAssistantMsg.querySelector(".loading-indicator"); |
| 387 | if (!indicator) { |
| 388 | indicator = document.createElement("div"); |
| 389 | indicator.className = "loading-indicator"; |
| 390 | indicator.innerHTML = `<span></span><span></span><span></span>`; |
| 391 | currentAssistantMsg.appendChild(indicator); |
| 392 | } |
| 393 | indicator.style.display = "flex"; |
| 394 | scrollToBottom(); |
| 395 | } |
| 396 | |
| 397 | function hideLoadingIndicator() { |
| 398 | if (!currentAssistantMsg) return; |
no test coverage detected