Skip to content

Commit

Permalink
convert _.extend to PHET_CORE/merge in non-runnable repos, and update…
Browse files Browse the repository at this point in the history
… doc usages, phetsims/phet-core#71
  • Loading branch information
zepumph committed Oct 17, 2019
1 parent 437c41b commit d8f45f4
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion js/intro/view/beaker/BeakerNode.js
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,7 @@ define( require => {
const fractionsCommon = require( 'FRACTIONS_COMMON/fractionsCommon' );
const FractionsCommonColorProfile = require( 'FRACTIONS_COMMON/common/view/FractionsCommonColorProfile' );
const LinearGradient = require( 'SCENERY/util/LinearGradient' );
const merge = require( 'PHET_CORE/merge' );
const Node = require( 'SCENERY/nodes/Node' );
const Path = require( 'SCENERY/nodes/Path' );
const Shape = require( 'KITE/Shape' );
Expand All @@ -31,7 +32,7 @@ define( require => {
assert && assert( typeof numerator === 'number' && numerator >= 0 && numerator % 1 === 0 );
assert && assert( typeof denominator === 'number' && denominator >= 1 && denominator % 1 === 0 );

options = _.extend( {
options = merge( {
// {number}
fullHeight: BeakerNode.DEFAULT_BEAKER_HEIGHT,
xRadius: 40,
Expand Down

0 comments on commit d8f45f4

Please sign in to comment.