diff --git a/index.html b/index.html
index f1298e5..cf63906 100644
--- a/index.html
+++ b/index.html
@@ -222,6 +222,9 @@
msg.voice = voices[$("#voiceSelect").val()];
synth.speak(msg);
});
+ if (window.hideTts) {
+ $(".playtts").hide();
+ }
});
}
@@ -319,8 +322,8 @@
$("#voiceSelect").append('');
});
if (voices.length == 0) {
- $("#voiceSelect").attr("disabled", "disabled");
- $("#myvoice").text('Try another browser to use TTS').attr("disabled", "disabled");
+ $("#voiceSelect").attr("disabled", "disabled").after('Try another browser to use TTS, or install TTS support for this browser.');
+ window.hideTts = true;
}
let params = new URLSearchParams(document.location.search);