Skip to content

Commit

Permalink
Merge remote-tracking branch 'origin/master'
Browse files Browse the repository at this point in the history
  • Loading branch information
samreid committed Sep 23, 2016
2 parents 027b199 + 70ff89a commit 87e4b14
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion js/mix-isotopes/view/AverageAtomicMassIndicator.js
Original file line number Diff line number Diff line change
Expand Up @@ -119,7 +119,7 @@ define( function( require ) {
} else {
weight = averageAtomicMass;
}
readoutText.setText( Util.toFixed( weight, NUMBER_DECIMALS ) + amuString );
readoutText.setText( Util.toFixed( weight, NUMBER_DECIMALS ) + ' ' + amuString );
readoutText.centerX = SIZE.width / 2;
}

Expand Down
2 changes: 1 addition & 1 deletion js/mix-isotopes/view/IsotopeProportionsPieChart.js
Original file line number Diff line number Diff line change
Expand Up @@ -87,7 +87,7 @@ define( function( require ) {
var symbol = chemSymbolWithNumbersNode( isotopeConfig );
node.addChild( symbol );

var readoutText = new Text( Util.toFixedNumber( isotopePercentage, numberOfDecimals ) + ' %', {
var readoutText = new Text( Util.toFixedNumber( isotopePercentage, numberOfDecimals ) + '%', {
font: READOUT_FONT,
maxWidth: 0.9 * SIZE.width,
maxHeight: 0.9 * SIZE.height
Expand Down

0 comments on commit 87e4b14

Please sign in to comment.