Skip to content

Commit

Permalink
remove console statements
Browse files Browse the repository at this point in the history
  • Loading branch information
jessegreenberg committed Mar 9, 2022
1 parent 0fe3c07 commit bb876d7
Showing 1 changed file with 0 additions and 2 deletions.
2 changes: 0 additions & 2 deletions www/js/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -109,7 +109,6 @@ class SpeechSynthesis {
this.speaking = true;

// TTS doesn't offer a 'start' event so we do our best by calling start callbacks eagerly.
console.log( 'start event', utterance.text );
utterance.fireStart();

TTS.speak( {
Expand All @@ -127,7 +126,6 @@ class SpeechSynthesis {
} ).then( () => {

// fire the end event on the Utterance
console.log( 'about to fire end for ', utterance.text );
utterance.fireEnd();

// speech success, we are no longer speaking
Expand Down

0 comments on commit bb876d7

Please sign in to comment.