Skip to content

Commit

Permalink
renaming variables in MassNode file, see issue #56
Browse files Browse the repository at this point in the history
  • Loading branch information
aadish committed Mar 9, 2016
1 parent cbf9460 commit ee76508
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions js/gravity-force-lab/view/MassNode.js
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,7 @@ define( function( require ) {
* @param {Object} [options]
* @constructor
*/
function MassObject( model, massModel, screenWidth, screenHeight, modelViewTransform, options ) {
function MassNode( model, massModel, screenWidth, screenHeight, modelViewTransform, options ) {
var self = this;
options = _.extend( {
label: 'This Mass',
Expand Down Expand Up @@ -220,7 +220,7 @@ define( function( require ) {
} ) );
}

inherit( Node, MassObject );
inherit( Node, MassNode );

return MassObject;
return MassNode;
} );

0 comments on commit ee76508

Please sign in to comment.