summaryrefslogtreecommitdiffstats
path: root/g4f/gui/client/static/js/chat.v1.js
diff options
context:
space:
mode:
authorH Lohaus <hlohaus@users.noreply.github.com>2024-04-09 20:20:24 +0200
committerGitHub <noreply@github.com>2024-04-09 20:20:24 +0200
commit0bb08e15a7037c469781d625288fb371e74adf33 (patch)
treeaaefa19be7ff6d41a73deb3d41c7c3a9181ebc28 /g4f/gui/client/static/js/chat.v1.js
parentMerge pull request #1807 from hlohaus/satur (diff)
parentImprove styling mobile (diff)
downloadgpt4free-0bb08e15a7037c469781d625288fb371e74adf33.tar
gpt4free-0bb08e15a7037c469781d625288fb371e74adf33.tar.gz
gpt4free-0bb08e15a7037c469781d625288fb371e74adf33.tar.bz2
gpt4free-0bb08e15a7037c469781d625288fb371e74adf33.tar.lz
gpt4free-0bb08e15a7037c469781d625288fb371e74adf33.tar.xz
gpt4free-0bb08e15a7037c469781d625288fb371e74adf33.tar.zst
gpt4free-0bb08e15a7037c469781d625288fb371e74adf33.zip
Diffstat (limited to '')
-rw-r--r--g4f/gui/client/static/js/chat.v1.js4
1 files changed, 3 insertions, 1 deletions
diff --git a/g4f/gui/client/static/js/chat.v1.js b/g4f/gui/client/static/js/chat.v1.js
index 02437bf7..5036a93b 100644
--- a/g4f/gui/client/static/js/chat.v1.js
+++ b/g4f/gui/client/static/js/chat.v1.js
@@ -96,10 +96,12 @@ const register_message_buttons = async () => {
el.dataset.click = "true";
el.addEventListener("click", async () => {
if ("active" in el.classList || window.doSpeech) {
+ el.classList.add("blink")
stopped = true;
return;
}
if (stopped) {
+ el.classList.remove("blink")
stopped = false;
return;
}
@@ -125,7 +127,7 @@ const register_message_buttons = async () => {
sound.controls = 'controls';
sound.src = url;
sound.type = 'audio/wav';
- if (ended) {
+ if (ended && !stopped) {
sound.autoplay = true;
}
sound.onended = function() {