Skip to content

Commit

Permalink
screen-specific doc for coordinatesVisibleProperty, #61
Browse files Browse the repository at this point in the history
Signed-off-by: Chris Malley <[email protected]>
  • Loading branch information
pixelzoom committed Oct 17, 2018
1 parent 02484f0 commit 387e3b5
Show file tree
Hide file tree
Showing 4 changed files with 6 additions and 6 deletions.
2 changes: 1 addition & 1 deletion js/common/view/GQViewProperties.js
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ define( require => {
// @public
this.graphContentsVisibleProperty = new BooleanProperty( options.graphContentsVisible, {
tandem: options.tandem.createTandem( 'graphContentsVisibleProperty' ),
phetioDocumentation: 'whether the contents of the graph are visible'
phetioDocumentation: 'whether the contents (curves, plotted points, manipulators) of the graph are visible'
} );

// @public
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -56,7 +56,7 @@ define( require => {
// @public
this.coordinatesVisibleProperty = new BooleanProperty( GQQueryParameters.checkAll, {
tandem: options.tandem.createTandem( 'coordinatesVisibleProperty' ),
phetioDocumentation: 'whether coordinates are visible on manipulators (vertex, focus, point on parabola)'
phetioDocumentation: 'whether (x,y) coordinates are visible on manipulators'
} );
}

Expand Down
4 changes: 2 additions & 2 deletions js/standardform/view/StandardFormViewProperties.js
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ define( require => {
// @public
this.vertexVisibleProperty = new BooleanProperty( GQQueryParameters.checkAll, {
tandem: options.tandem.createTandem( 'vertexVisibleProperty' ),
phetioDocumentation: 'whether the vertex is visible'
phetioDocumentation: 'whether the plotted vertex is visible'
} );

// @public
Expand All @@ -49,7 +49,7 @@ define( require => {
// @public
this.coordinatesVisibleProperty = new BooleanProperty( true, {
tandem: options.tandem.createTandem( 'coordinatesVisibleProperty' ),
phetioDocumentation: 'whether coordinates are visible on the vertex and roots'
phetioDocumentation: 'whether (x,y) coordinates are visible on plotted points'
} );
}

Expand Down
4 changes: 2 additions & 2 deletions js/vertexform/view/VertexFormViewProperties.js
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ define( require => {
// @public
this.vertexVisibleProperty = new BooleanProperty( GQQueryParameters.checkAll, {
tandem: options.tandem.createTandem( 'vertexVisibleProperty' ),
phetioDocumentation: 'whether the vertex is visible'
phetioDocumentation: 'whether the vertex manipulator is visible'
} );

// @public
Expand All @@ -44,7 +44,7 @@ define( require => {
// @public
this.coordinatesVisibleProperty = new BooleanProperty( true, {
tandem: options.tandem.createTandem( 'coordinatesVisibleProperty' ),
phetioDocumentation: 'whether coordinates are visible on the vertex'
phetioDocumentation: 'whether (x,y) coordinates are visible on the vertex manipulator'
} );
}

Expand Down

0 comments on commit 387e3b5

Please sign in to comment.