Skip to content

Commit

Permalink
Renaming the variables, see issue #60
Browse files Browse the repository at this point in the history
  • Loading branch information
aadish committed Mar 9, 2016
1 parent 428ae74 commit cbf9460
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions js/gravity-force-lab/view/MassControl.js
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ define( function( require ) {
* @param options
* @constructor
*/
function ControlMass( titleString, massProperty, massRange, thumbColor, options ) {
function MassControl( titleString, massProperty, massRange, thumbColor, options ) {

options = _.extend( {
fill: '#FDF498',
Expand Down Expand Up @@ -117,7 +117,7 @@ define( function( require ) {
} );
}

inherit( Panel, ControlMass );
inherit( Panel, MassControl );

return ControlMass;
return MassControl;
} );

0 comments on commit cbf9460

Please sign in to comment.