Skip to content

Commit

Permalink
Rename DOT/Util and SCENERY/Util to Utils, see phetsims/tasks#966
Browse files Browse the repository at this point in the history
  • Loading branch information
samreid committed Dec 30, 2019
1 parent 0ac2b10 commit 02a1049
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions js/demo/ui-components/view/UIComponentsScreenView.js
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@ define( require => {
const tambo = require( 'TAMBO/tambo' );
const Text = require( 'SCENERY/nodes/Text' );
const TextPushButton = require( 'SUN/buttons/TextPushButton' );
const Util = require( 'DOT/Util' );
const Utils = require( 'DOT/Utils' );
const VBox = require( 'SCENERY/nodes/VBox' );

// constants
Expand Down Expand Up @@ -153,7 +153,7 @@ define( require => {
thumbSize: SLIDER_THUMB_SIZE,
left: 115,
top: 115,
constrainValue: value => Util.roundSymmetric( value ),
constrainValue: value => Utils.roundSymmetric( value ),
keyboardStep: 1
} );
_.times( NUM_TICK_MARKS, index => { discreteSlider.addMinorTick( index ); } );
Expand Down

0 comments on commit 02a1049

Please sign in to comment.