Skip to content

Commit

Permalink
renaming variables in ParameterControlPanel, see issue #54
Browse files Browse the repository at this point in the history
  • Loading branch information
aadish committed Mar 9, 2016
1 parent 3fdb4d1 commit d680e98
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions js/gravity-force-lab/view/ParameterControlPanel.js
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ define( function( require ) {
* @param {Object} [options]
* @constructor
*/
function ControlShowValues( model, options ) {
function ParameterControlPanel( model, options ) {

options = _.extend( {
fill: '#FDF498',
Expand All @@ -49,7 +49,7 @@ define( function( require ) {
Panel.call( this, node, options );
}

inherit( Panel, ControlShowValues );
inherit( Panel, ParameterControlPanel );

return ControlShowValues;
return ParameterControlPanel;
} );

0 comments on commit d680e98

Please sign in to comment.