Skip to content

Commit

Permalink
remove emit1(), use emit() instead, phetsims/axon#211
Browse files Browse the repository at this point in the history
  • Loading branch information
zepumph committed Oct 22, 2019
1 parent 0091fc5 commit 90b37e2
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion js/accessibility/UtteranceTests.js
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ define( require => {

// step the timer, because utteranceQueue runs on timer
intervalID = setInterval( () => {
timer.emit1( 1 / 100 ); // step timer in seconds, every millisecond
timer.emit( 1 / 100 ); // step timer in seconds, every millisecond
}, 10 );

ariaHerald.initialize();
Expand Down

0 comments on commit 90b37e2

Please sign in to comment.