diff --git a/js/view/ISLCAlertManager.js b/js/view/ISLCAlertManager.js index 6f30bfa..7072b23 100644 --- a/js/view/ISLCAlertManager.js +++ b/js/view/ISLCAlertManager.js @@ -50,7 +50,7 @@ define( require => { } this.showForceValuesUtterance.alert = alert; - phet.joist.sim.display.utteranceQueue.addToBack( this.showForceValuesUtterance ); + phet.joist.sim.utteranceQueue.addToBack( this.showForceValuesUtterance ); } } diff --git a/js/view/ISLCRulerNode.js b/js/view/ISLCRulerNode.js index 7445b14..7e170c7 100644 --- a/js/view/ISLCRulerNode.js +++ b/js/view/ISLCRulerNode.js @@ -190,7 +190,7 @@ define( require => { onGrab: () => { grabbedUtterance.alert = rulerDescriber.getRulerGrabbedAlertable(); - phet.joist.sim.display.utteranceQueue.addToBack( grabbedUtterance ); + phet.joist.sim.utteranceQueue.addToBack( grabbedUtterance ); }, listenersForDrag: [ keyboardDragListener ], @@ -211,7 +211,7 @@ define( require => { // TODO: remove this conditional once CL ruler describer is supported if ( rulerDescriber.getJumpCenterMassAlert ) { movedUtterance.alert = rulerDescriber.getJumpCenterMassAlert(); - phet.joist.sim.display.utteranceQueue.addToBack( movedUtterance ); + phet.joist.sim.utteranceQueue.addToBack( movedUtterance ); } } }, { @@ -223,7 +223,7 @@ define( require => { // TODO: remove this conditional once CL ruler describer is supported if ( rulerDescriber.getHomePositionString ) { movedUtterance.alert = rulerDescriber.getHomePositionString(); - phet.joist.sim.display.utteranceQueue.addToBack( movedUtterance ); + phet.joist.sim.utteranceQueue.addToBack( movedUtterance ); } } } ] );