Skip to content

Commit

Permalink
Renamed tandems, see #22
Browse files Browse the repository at this point in the history
  • Loading branch information
samreid committed Jan 6, 2018
1 parent 4c09afe commit 57f166a
Showing 1 changed file with 16 additions and 20 deletions.
36 changes: 16 additions & 20 deletions js/gravity-force-lab-basics/view/GravityForceLabBasicsScreenView.js
Original file line number Diff line number Diff line change
Expand Up @@ -66,26 +66,22 @@ define( function( require ) {
.05
);

var checkboxItems = [
{
content: forceValuesString,
property: model.showValuesProperty,
textTandemLabel: 'showValuesText',
checkboxTandemLabel: 'showValuesCheckbox'
},
{
content: distanceString,
property: model.showDistanceProperty,
textTandemLabel: 'distanceText',
checkboxTandemLabel: 'distanceCheckbox'
},
{
content: constantRadiusString,
property: model.constantRadiusProperty,
textTandemLabel: 'constantRadiusText',
checkboxTandemLabel: 'constanntRadiusCheckbox'
}
];
var checkboxItems = [ {
content: forceValuesString,
property: model.showValuesProperty,
textTandemLabel: 'forceValuesText',
checkboxTandemLabel: 'forceValuesCheckbox'
}, {
content: distanceString,
property: model.showDistanceProperty,
textTandemLabel: 'distanceText',
checkboxTandemLabel: 'distanceCheckbox'
}, {
content: constantRadiusString,
property: model.constantRadiusProperty,
textTandemLabel: 'constantRadiusText',
checkboxTandemLabel: 'constantRadiusCheckbox'
} ];
var parameterControlPanel = new ISLCheckboxPanel( checkboxItems, tandem.createTandem( 'parameterControlPanel' ), {
fill: '#f1f1f2'
} );
Expand Down

0 comments on commit 57f166a

Please sign in to comment.