Skip to content

Commit

Permalink
add UTTERANCE_QUEUE to configs, move tests over to utterance-queue re…
Browse files Browse the repository at this point in the history
…po, convert usages to use the library, not the scenery-phet ones, delete those, phetsims/utterance-queue#2
  • Loading branch information
zepumph committed Oct 22, 2019
1 parent 300bf78 commit 38306b8
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 2 deletions.
1 change: 1 addition & 0 deletions js/ohms-law-config.js
Original file line number Diff line number Diff line change
Expand Up @@ -41,6 +41,7 @@ require.config( {
SUN: '../../sun/js',
TAMBO: '../../tambo/js',
TANDEM: '../../tandem/js',
UTTERANCE_QUEUE: '../../utterance-queue/js',
VIBE: '../../vibe/js'
},

Expand Down
4 changes: 2 additions & 2 deletions js/ohms-law/view/ControlPanel.js
Original file line number Diff line number Diff line change
Expand Up @@ -23,8 +23,8 @@ define( require => {
const SliderUnit = require( 'OHMS_LAW/ohms-law/view/SliderUnit' );
const StringUtils = require( 'PHETCOMMON/util/StringUtils' );
const Util = require( 'DOT/Util' );
const utteranceQueue = require( 'SCENERY_PHET/accessibility/utteranceQueue' );
const ValueChangeUtterance = require( 'SCENERY_PHET/accessibility/ValueChangeUtterance' );
const utteranceQueue = require( 'UTTERANCE_QUEUE/utteranceQueue' );
const ValueChangeUtterance = require( 'UTTERANCE_QUEUE/ValueChangeUtterance' );

// strings
const resistanceString = require( 'string!OHMS_LAW/resistance' );
Expand Down

0 comments on commit 38306b8

Please sign in to comment.