-
-
Save bagwanpankaj/8cfbed36406d271199aa to your computer and use it in GitHub Desktop.
Revisions
-
wesbos revised this gist
Feb 16, 2016 . 1 changed file with 2 additions and 1 deletion.There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters. Learn more about bidirectional Unicode charactersOriginal file line number Diff line number Diff line change @@ -1,6 +1,7 @@ // paste in your console speechSynthesis.onvoiceschanged = function() { var msg = new SpeechSynthesisUtterance(); msg.voice = this.getVoices().filter(v => v.name == 'Cellos')[0]; msg.text = Object.keys(window).join(' '); this.speak(msg); }; -
wesbos created this gist
Feb 16, 2016 .There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters. Learn more about bidirectional Unicode charactersOriginal file line number Diff line number Diff line change @@ -0,0 +1,6 @@ speechSynthesis.onvoiceschanged = function() { var msg = new SpeechSynthesisUtterance(); msg.voice = this.getVoices().filter(v => v.name == 'Cellos')[0]; msg.text = Object.keys(window).join(' '); this.speak(msg); };