Skip to content

Commit

Permalink
Move phetioFeatured from overrides to main code, see #303
Browse files Browse the repository at this point in the history
  • Loading branch information
samreid committed Jun 29, 2020
1 parent b2cfefa commit cd73c23
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 5 deletions.
3 changes: 2 additions & 1 deletion js/atomic-interactions/model/DualAtomModel.js
Original file line number Diff line number Diff line change
Expand Up @@ -73,7 +73,8 @@ class DualAtomModel {

// @public (read-write) - paused or playing
this.isPlayingProperty = new BooleanProperty( true, {
tandem: tandem.createTandem( 'isPlayingProperty' )
tandem: tandem.createTandem( 'isPlayingProperty' ),
phetioFeatured: true
} );

// @public (read-write) - speed at which the model is running
Expand Down
3 changes: 2 additions & 1 deletion js/common/model/MultipleParticleModel.js
Original file line number Diff line number Diff line change
Expand Up @@ -179,7 +179,8 @@ class MultipleParticleModel extends PhetioObject {

// @public (read-write)
this.isPlayingProperty = new BooleanProperty( true, {
tandem: tandem.createTandem( 'isPlayingProperty' )
tandem: tandem.createTandem( 'isPlayingProperty' ),
phetioFeatured: true
} );

// @public (read-write)
Expand Down
3 changes: 0 additions & 3 deletions js/phet-io/states-of-matter-overrides.js
Original file line number Diff line number Diff line change
Expand Up @@ -79,9 +79,6 @@ window.phet.preloads.phetio.phetioElementsOverrides =
"statesOfMatter.phaseChangesScreen.model.isExplodedProperty": {
"phetioFeatured": true
},
"statesOfMatter.phaseChangesScreen.model.isPlayingProperty": {
"phetioFeatured": true
},
"statesOfMatter.phaseChangesScreen.model.phaseDiagramExpandedProperty": {
"phetioFeatured": true
},
Expand Down

0 comments on commit cd73c23

Please sign in to comment.