Skip to content

Commit

Permalink
rename forceValuesProperty -> showForceValues, phetsims/inverse-squar…
Browse files Browse the repository at this point in the history
  • Loading branch information
zepumph committed Jul 1, 2019
1 parent 6df3c9f commit 0952216
Show file tree
Hide file tree
Showing 2 changed files with 12 additions and 12 deletions.
4 changes: 2 additions & 2 deletions js/common/view/CoulombsLawCommonView.js
Original file line number Diff line number Diff line change
Expand Up @@ -81,15 +81,15 @@ define( function( require ) {

// construct checkbox item list
var checkboxItems = [
new ISLCCheckboxItem( forceValuesString, coulombsLawModel.forceValuesProperty, {
new ISLCCheckboxItem( forceValuesString, coulombsLawModel.showForceValuesProperty, {
tandem: tandem.createTandem( 'forceValuesCheckbox' )
} ),
new ISLCCheckboxItem( scientificNotationString, coulombsLawModel.scientificNotationProperty, {
tandem: tandem.createTandem( 'scientificNotationCheckbox' )
} )
];

coulombsLawModel.forceValuesProperty.link( function( showValues ) {
coulombsLawModel.showForceValuesProperty.link( function( showValues ) {
checkboxItems[ 1 ].enabled = showValues;
} );

Expand Down
20 changes: 10 additions & 10 deletions js/phet-io/coulombs-law-phet-io-elements-baseline.js
Original file line number Diff line number Diff line change
Expand Up @@ -155,7 +155,7 @@ window.phet.phetio.phetioElementsBaseline = assert &&
"phetioStudioControl": true,
"phetioTypeName": "DerivedPropertyIO.<NumberIO>"
},
"coulombsLaw.atomicScreen.coulombsLawAtomicScreen.model.forceValuesProperty": {
"coulombsLaw.atomicScreen.coulombsLawAtomicScreen.model.rulerPositionProperty": {
"phetioDocumentation": "",
"phetioEventType": "model",
"phetioFeatured": false,
Expand All @@ -164,9 +164,9 @@ window.phet.phetio.phetioElementsBaseline = assert &&
"phetioReadOnly": false,
"phetioState": true,
"phetioStudioControl": true,
"phetioTypeName": "PropertyIO.<BooleanIO>"
"phetioTypeName": "PropertyIO.<Vector2IO>"
},
"coulombsLaw.atomicScreen.coulombsLawAtomicScreen.model.rulerPositionProperty": {
"coulombsLaw.atomicScreen.coulombsLawAtomicScreen.model.scientificNotationProperty": {
"phetioDocumentation": "",
"phetioEventType": "model",
"phetioFeatured": false,
Expand All @@ -175,9 +175,9 @@ window.phet.phetio.phetioElementsBaseline = assert &&
"phetioReadOnly": false,
"phetioState": true,
"phetioStudioControl": true,
"phetioTypeName": "PropertyIO.<Vector2IO>"
"phetioTypeName": "PropertyIO.<BooleanIO>"
},
"coulombsLaw.atomicScreen.coulombsLawAtomicScreen.model.scientificNotationProperty": {
"coulombsLaw.atomicScreen.coulombsLawAtomicScreen.model.showForceValuesProperty": {
"phetioDocumentation": "",
"phetioEventType": "model",
"phetioFeatured": false,
Expand Down Expand Up @@ -6579,7 +6579,7 @@ window.phet.phetio.phetioElementsBaseline = assert &&
"phetioStudioControl": true,
"phetioTypeName": "DerivedPropertyIO.<NumberIO>"
},
"coulombsLaw.macroScreen.coulombsLawMacroScreen.model.forceValuesProperty": {
"coulombsLaw.macroScreen.coulombsLawMacroScreen.model.rulerPositionProperty": {
"phetioDocumentation": "",
"phetioEventType": "model",
"phetioFeatured": false,
Expand All @@ -6588,9 +6588,9 @@ window.phet.phetio.phetioElementsBaseline = assert &&
"phetioReadOnly": false,
"phetioState": true,
"phetioStudioControl": true,
"phetioTypeName": "PropertyIO.<BooleanIO>"
"phetioTypeName": "PropertyIO.<Vector2IO>"
},
"coulombsLaw.macroScreen.coulombsLawMacroScreen.model.rulerPositionProperty": {
"coulombsLaw.macroScreen.coulombsLawMacroScreen.model.scientificNotationProperty": {
"phetioDocumentation": "",
"phetioEventType": "model",
"phetioFeatured": false,
Expand All @@ -6599,9 +6599,9 @@ window.phet.phetio.phetioElementsBaseline = assert &&
"phetioReadOnly": false,
"phetioState": true,
"phetioStudioControl": true,
"phetioTypeName": "PropertyIO.<Vector2IO>"
"phetioTypeName": "PropertyIO.<BooleanIO>"
},
"coulombsLaw.macroScreen.coulombsLawMacroScreen.model.scientificNotationProperty": {
"coulombsLaw.macroScreen.coulombsLawMacroScreen.model.showForceValuesProperty": {
"phetioDocumentation": "",
"phetioEventType": "model",
"phetioFeatured": false,
Expand Down

0 comments on commit 0952216

Please sign in to comment.