Skip to content

Commit

Permalink
Pass options to superclass in order to instrument graph values node, …
Browse files Browse the repository at this point in the history
…see #83
  • Loading branch information
chrisklus committed Apr 25, 2019
1 parent 2615515 commit ba1cfe6
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions js/blackbody-spectrum/view/GraphValuesPointNode.js
Original file line number Diff line number Diff line change
Expand Up @@ -41,8 +41,6 @@ define( function( require ) {
function GraphValuesPointNode( body, axes, options ) {
var self = this;

Node.call( this, { cursor: 'ew-resize' } );

options = _.extend( {
circleOptions: {
radius: 5,
Expand All @@ -65,10 +63,12 @@ define( function( require ) {
tailWidth: 7
},
labelOffset: 5,

cursor: 'ew-resize',
tandem: Tandem.required
}, options );

Node.call( this, options );

// @private
this.body = body;
this.axes = axes;
Expand Down

0 comments on commit ba1cfe6

Please sign in to comment.