Skip to content

Commit

Permalink
Renamed [C|c]heckBox => [C|c]heckbox, see phetsims/tasks#910
Browse files Browse the repository at this point in the history
  • Loading branch information
samreid committed Jan 12, 2018
1 parent 903f2ea commit 292df2b
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions js/mystery/view/FBBMysterySceneNode.js
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,7 @@ define( function( require ) {
functionCarouselVisible: false,

// Hide the checkbox that lets us show/hide the identify of functions in the builder.
hideFunctionsCheckBoxVisible: false,
hideFunctionsCheckboxVisible: false,

// Show an image on the 'See Inside' check box icon
seeInsideIconType: 'image'
Expand Down Expand Up @@ -136,7 +136,7 @@ define( function( require ) {
} );

// enable 'See Inside' check box
self.seeInsideCheckBox.enabled = self.seeInsideCheckBox.enabled || ( numberOfCards === 1 );
self.seeInsideCheckbox.enabled = self.seeInsideCheckbox.enabled || ( numberOfCards === 1 );
} );

// @private colors for the '?' on function nodes
Expand Down Expand Up @@ -197,7 +197,7 @@ define( function( require ) {
this.seeInsideProperty.reset();

// disable 'See Inside' check box
this.seeInsideCheckBox.enabled = false;
this.seeInsideCheckbox.enabled = false;
},

/**
Expand Down

0 comments on commit 292df2b

Please sign in to comment.