Skip to content

Commit

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

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

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

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

// @public (read-write)
Expand Down
3 changes: 3 additions & 0 deletions js/phet-io/states-of-matter-overrides.js
Original file line number Diff line number Diff line change
Expand Up @@ -79,6 +79,9 @@ 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 c6202cc

Please sign in to comment.