Skip to content

Commit

Permalink
Put paper numbers above the formula in the game screen, see #266
Browse files Browse the repository at this point in the history
  • Loading branch information
jonathanolson committed Feb 3, 2017
1 parent 037ed36 commit 6aec7a9
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions js/make-a-ten/game/view/MakeATenGameScreenView.js
Original file line number Diff line number Diff line change
Expand Up @@ -99,15 +99,15 @@ define( function( require ) {
} );
this.levelSelectionLayer.addChild( this.soundToggleButton );

// Add the paper number layer from our supertype
this.challengeLayer.addChild( this.paperNumberLayerNode );

// The node that display "12 + 100 = "
var additionTermsNode = new AdditionTermsNode( model.additionTerms, false );
additionTermsNode.left = this.layoutBounds.left + 38;
additionTermsNode.top = this.layoutBounds.top + 75;
this.challengeLayer.addChild( additionTermsNode );

// Add the paper number layer from our supertype
this.challengeLayer.addChild( this.paperNumberLayerNode );

// @private {NextArrowButton} - Moves to the next challenge when clicked
this.nextChallengeButton = new NextArrowButton( nextString, {
listener: function() {
Expand Down

0 comments on commit 6aec7a9

Please sign in to comment.