From 387e3b50792859de39ecc9c810e19da7a24bf09e Mon Sep 17 00:00:00 2001 From: Chris Malley Date: Wed, 17 Oct 2018 12:41:11 -0600 Subject: [PATCH] screen-specific doc for coordinatesVisibleProperty, #61 Signed-off-by: Chris Malley --- js/common/view/GQViewProperties.js | 2 +- js/focusanddirectrix/view/FocusAndDirectrixViewProperties.js | 2 +- js/standardform/view/StandardFormViewProperties.js | 4 ++-- js/vertexform/view/VertexFormViewProperties.js | 4 ++-- 4 files changed, 6 insertions(+), 6 deletions(-) diff --git a/js/common/view/GQViewProperties.js b/js/common/view/GQViewProperties.js index 92242290..7fd82544 100644 --- a/js/common/view/GQViewProperties.js +++ b/js/common/view/GQViewProperties.js @@ -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 diff --git a/js/focusanddirectrix/view/FocusAndDirectrixViewProperties.js b/js/focusanddirectrix/view/FocusAndDirectrixViewProperties.js index c08030fc..4adee5df 100644 --- a/js/focusanddirectrix/view/FocusAndDirectrixViewProperties.js +++ b/js/focusanddirectrix/view/FocusAndDirectrixViewProperties.js @@ -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' } ); } diff --git a/js/standardform/view/StandardFormViewProperties.js b/js/standardform/view/StandardFormViewProperties.js index 5894d4fe..fb1a98ac 100644 --- a/js/standardform/view/StandardFormViewProperties.js +++ b/js/standardform/view/StandardFormViewProperties.js @@ -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 @@ -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' } ); } diff --git a/js/vertexform/view/VertexFormViewProperties.js b/js/vertexform/view/VertexFormViewProperties.js index 1fdb61de..d73345c9 100644 --- a/js/vertexform/view/VertexFormViewProperties.js +++ b/js/vertexform/view/VertexFormViewProperties.js @@ -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 @@ -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' } ); }