Skip to content

Commit

Permalink
pass tandem to Screen.super, #92
Browse files Browse the repository at this point in the history
  • Loading branch information
pixelzoom committed Jan 30, 2020
1 parent a8b8e50 commit 3343cf4
Show file tree
Hide file tree
Showing 4 changed files with 1,511 additions and 403 deletions.
3 changes: 2 additions & 1 deletion js/macro/MacroScreen.js
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,8 @@ define( require => {
name: screenMacroString,
backgroundColorProperty: new Property( PHScaleColors.SCREEN_BACKGROUND ),
homeScreenIcon: new Image( homeIcon ),
navigationBarIcon: new Image( navbarIcon )
navigationBarIcon: new Image( navbarIcon ),
tandem: tandem
};

super(
Expand Down
3 changes: 2 additions & 1 deletion js/micro/MicroScreen.js
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,8 @@ define( require => {
name: screenMicroString,
backgroundColorProperty: new Property( PHScaleColors.SCREEN_BACKGROUND ),
homeScreenIcon: new Image( homeIcon ),
navigationBarIcon: new Image( navbarIcon )
navigationBarIcon: new Image( navbarIcon ),
tandem: tandem
};

super(
Expand Down
3 changes: 2 additions & 1 deletion js/mysolution/MySolutionScreen.js
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,8 @@ define( require => {
name: screenMySolutionString,
backgroundColorProperty: new Property( PHScaleColors.SCREEN_BACKGROUND ),
homeScreenIcon: new Image( homeIcon ),
navigationBarIcon: new Image( navbarIcon )
navigationBarIcon: new Image( navbarIcon ),
tandem: tandem
};

super(
Expand Down
Loading

0 comments on commit 3343cf4

Please sign in to comment.