Skip to content

Commit

Permalink
Layer numbers over next button, see #266
Browse files Browse the repository at this point in the history
  • Loading branch information
jonathanolson committed Feb 21, 2017
1 parent 19aabaf commit 2f376b5
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 @@ -105,9 +105,6 @@ define( function( require ) {
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 All @@ -121,6 +118,9 @@ define( function( require ) {
self.nextChallengeButton.visible = gameState === GameState.CORRECT_ANSWER;
} );

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

// @private {GameStatusBar} - Status bar at the top of the screen
this.gameStatusBar = new GameStatusBar( model );
this.challengeLayer.addChild( this.gameStatusBar );
Expand Down

0 comments on commit 2f376b5

Please sign in to comment.