Update index.html

This commit is contained in:
zyphlar 2023-01-01 13:01:59 -08:00 committed by GitHub
parent 842a66705e
commit 5f1c4bb58f
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -222,6 +222,9 @@
msg.voice = voices[$("#voiceSelect").val()];
synth.speak(msg);
});
if (window.hideTts) {
$(".playtts").hide();
}
});
}
</script>
@ -319,8 +322,8 @@
$("#voiceSelect").append('<option value="'+i+'" lang="'+voice.lang+'">'+voice.name+'</option>');
});
if (voices.length == 0) {
$("#voiceSelect").attr("disabled", "disabled");
$("#myvoice").text('Try another browser to use TTS').attr("disabled", "disabled");
$("#voiceSelect").attr("disabled", "disabled").after('<em>Try another browser to use TTS, or install TTS support for this browser.</em>');
window.hideTts = true;
}
let params = new URLSearchParams(document.location.search);