Skip to content

Commit

Permalink
changeDirection bug fix, phetsims/gravity-force-lab-basics#134
Browse files Browse the repository at this point in the history
  • Loading branch information
zepumph committed Jun 18, 2019
1 parent 8de8fb6 commit 848e74f
Showing 1 changed file with 2 additions and 3 deletions.
5 changes: 2 additions & 3 deletions js/view/describers/ForceDescriber.js
Original file line number Diff line number Diff line change
Expand Up @@ -343,12 +343,11 @@ define( require => {
* @public
*/
getVectorChangeForcesNowClause() {
const { changeDirection, units } = this;
const forceValue = this.getFormattedForce();
return StringUtils.fillIn( this.vectorChangeForcesNowClausePatternString, {
changeDirection: changeDirection,
changeDirection: this.getChangeDirection(),
forceValue: forceValue,
units: units
units: this.units
} );
}

Expand Down

0 comments on commit 848e74f

Please sign in to comment.