Call Recordings: Option to manually submit audio to AI for transcription, if enabled.

This commit is contained in:
fusionate
2024-05-21 14:59:23 -06:00
parent 7312b9ab67
commit 1f8542b9cc
5 changed files with 212 additions and 30 deletions
+3
View File
@@ -905,17 +905,20 @@
btn_toggle = document.getElementById("btn_toggle");
btn_delete = document.getElementById("btn_delete");
btn_download = document.getElementById("btn_download");
btn_transcribe = document.getElementById("btn_transcribe");
if (checked == true) {
if (btn_copy) { btn_copy.style.display = "inline"; }
if (btn_toggle) { btn_toggle.style.display = "inline"; }
if (btn_delete) { btn_delete.style.display = "inline"; }
if (btn_download) { btn_download.style.display = "inline"; }
if (btn_transcribe) { btn_transcribe.style.display = "inline"; }
}
else {
if (btn_copy) { btn_copy.style.display = "none"; }
if (btn_toggle) { btn_toggle.style.display = "none"; }
if (btn_delete) { btn_delete.style.display = "none"; }
if (btn_download) { btn_download.style.display = "none"; }
if (btn_transcribe) { btn_transcribe.style.display = "none"; }
}
}
{/literal}