Voicemail Messages: Add Resend feature, fix manual Transcription if voicemail stored as base64.

This commit is contained in:
fusionate
2024-07-10 16:28:41 -06:00
parent 5af4610a9c
commit ea7fb60533
4 changed files with 483 additions and 22 deletions

View File

@@ -906,12 +906,14 @@
btn_delete = document.getElementById("btn_delete");
btn_download = document.getElementById("btn_download");
btn_transcribe = document.getElementById("btn_transcribe");
btn_resend = document.getElementById("btn_resend");
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"; }
if (btn_resend) { btn_resend.style.display = "inline"; }
}
else {
if (btn_copy) { btn_copy.style.display = "none"; }
@@ -919,6 +921,7 @@
if (btn_delete) { btn_delete.style.display = "none"; }
if (btn_download) { btn_download.style.display = "none"; }
if (btn_transcribe) { btn_transcribe.style.display = "none"; }
if (btn_resend) { btn_resend.style.display = "none"; }
}
}
{/literal}