Skip to content

Commit

Permalink
Delete labelsVisible from GraphView and an unused function, see #29
Browse files Browse the repository at this point in the history
  • Loading branch information
jessegreenberg committed Sep 23, 2015
1 parent 8887e20 commit 9720219
Showing 1 changed file with 0 additions and 5 deletions.
5 changes: 0 additions & 5 deletions js/trig-tour/view/GraphView.js
Original file line number Diff line number Diff line change
Expand Up @@ -72,7 +72,6 @@ define( function( require ) {
var graphView = this;
this.model = model;
this.trigFunction = 'cos'; //{string} 'cos'|'sin'|'tan' set by Control Panel
this.labelsVisible = 'false'; //true is labels on graph are visible, set by Control Panel
this.expandedProperty = new Property( true ); //Graph can be hidden with expandCollapse button

// Call the super constructor
Expand Down Expand Up @@ -451,10 +450,6 @@ define( function( require ) {
}
} ) );

this.setLabelVisibility = function( tOrF ) {
this.labelsVisible = tOrF;
};

// Register for synchronization with model.
model.angleProperty.link( function( angle ) {
var xPos = angle / (2 * Math.PI) * wavelength;
Expand Down

0 comments on commit 9720219

Please sign in to comment.