diff --git a/www/SpeechSynthesisUtterance.js b/www/SpeechSynthesisUtterance.js index 586c61c..e44eabe 100644 --- a/www/SpeechSynthesisUtterance.js +++ b/www/SpeechSynthesisUtterance.js @@ -1,5 +1,5 @@ -var SpeechSynthesisUtterance = function() { - this.text; +var SpeechSynthesisUtterance = function(text) { + this.text = text; this.lang; this.voiceURI; this.volume;