diff options
author | Heiner Lohaus <hlohaus@users.noreply.github.com> | 2024-04-09 20:19:46 +0200 |
---|---|---|
committer | Heiner Lohaus <hlohaus@users.noreply.github.com> | 2024-04-09 20:19:46 +0200 |
commit | aff3ec5be0867639ac2f73d4faf05d0461bb4f5a (patch) | |
tree | 0b37a260314527f87b24d27a92950880a40b404d /g4f/gui/client/static/js/chat.v1.js | |
parent | Add project files (diff) | |
download | gpt4free-aff3ec5be0867639ac2f73d4faf05d0461bb4f5a.tar gpt4free-aff3ec5be0867639ac2f73d4faf05d0461bb4f5a.tar.gz gpt4free-aff3ec5be0867639ac2f73d4faf05d0461bb4f5a.tar.bz2 gpt4free-aff3ec5be0867639ac2f73d4faf05d0461bb4f5a.tar.lz gpt4free-aff3ec5be0867639ac2f73d4faf05d0461bb4f5a.tar.xz gpt4free-aff3ec5be0867639ac2f73d4faf05d0461bb4f5a.tar.zst gpt4free-aff3ec5be0867639ac2f73d4faf05d0461bb4f5a.zip |
Diffstat (limited to 'g4f/gui/client/static/js/chat.v1.js')
-rw-r--r-- | g4f/gui/client/static/js/chat.v1.js | 4 |
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() { |