lokesh341 commited on
Commit
40f459d
·
verified ·
1 Parent(s): 9e0090a

Update templates/index.html

Browse files
Files changed (1) hide show
  1. templates/index.html +1 -1
templates/index.html CHANGED
@@ -82,7 +82,7 @@
82
 
83
  if ('webkitSpeechRecognition' in window) {
84
  recognition = new webkitSpeechRecognition();
85
- recognition.continuous = true; // Keep listening
86
  recognition.interimResults = false;
87
  recognition.lang = 'en-US';
88
  } else {
 
82
 
83
  if ('webkitSpeechRecognition' in window) {
84
  recognition = new webkitSpeechRecognition();
85
+ recognition.continuous = false; // Stop after capturing each input
86
  recognition.interimResults = false;
87
  recognition.lang = 'en-US';
88
  } else {