Spaces:
Sleeping
Sleeping
Update templates/index.html
Browse files- templates/index.html +1 -1
templates/index.html
CHANGED
@@ -108,7 +108,7 @@
|
|
108 |
}
|
109 |
|
110 |
function confirmName() {
|
111 |
-
speak("You said " + nameCaptured.split('').join(' ') + ". Is it okay, or do you want to change it?", function() {
|
112 |
recognition.start();
|
113 |
recognition.onresult = function(event) {
|
114 |
let confirmation = event.results[0][0].transcript.trim().toLowerCase();
|
|
|
108 |
}
|
109 |
|
110 |
function confirmName() {
|
111 |
+
speak("You said " + nameCaptured.trim().split('').join(' ') + ". Is it okay, or do you want to change it?", function() {
|
112 |
recognition.start();
|
113 |
recognition.onresult = function(event) {
|
114 |
let confirmation = event.results[0][0].transcript.trim().toLowerCase();
|