Skip to content

Commit

Permalink
Support constructor or mutate for IOObject initialization, see phetsi…
Browse files Browse the repository at this point in the history
  • Loading branch information
samreid authored and marlitas committed Jun 28, 2022
1 parent a71a36a commit 03c6cd8
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions js/NumberPicker.js
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,6 @@ define( function( require ) {
var FireOnHoldInputListener = require( 'SCENERY_PHET/buttons/FireOnHoldInputListener' );
var FocusHighlightPath = require( 'SCENERY/accessibility/FocusHighlightPath' );
var inherit = require( 'PHET_CORE/inherit' );
var IOObject = require( 'TANDEM/IOObject' );
var KeyboardUtil = require( 'SCENERY/accessibility/KeyboardUtil' );
var LinearGradient = require( 'SCENERY/util/LinearGradient' );
var Node = require( 'SCENERY/nodes/Node' );
Expand Down Expand Up @@ -132,7 +131,7 @@ define( function( require ) {
}

var self = this;
Node.call( this, IOObject.getOptions( options ) );
Node.call( this );

//------------------------------------------------------------
// Properties
Expand Down

0 comments on commit 03c6cd8

Please sign in to comment.