diff --git a/js/explore/model/BankSceneModel.js b/js/explore/model/BankSceneModel.js index 6dcba28..c1e6415 100644 --- a/js/explore/model/BankSceneModel.js +++ b/js/explore/model/BankSceneModel.js @@ -164,13 +164,12 @@ define( require => { this.showComparisonAccountProperty.reset(); this.comparisonAccount.reset(); } - - // statics - colors used for primary and comparison account points - static get PRIMARY_ACCOUNT_POINT_COLOR() { return PRIMARY_ACCOUNT_POINT_COLOR; } // eslint-disable-line bad-sim-text - - static get COMPARISON_ACCOUNT_POINT_COLOR() { return COMPARISON_ACCOUNT_POINT_COLOR; } // eslint-disable-line bad-sim-text } + // static properties + BankSceneModel.PRIMARY_ACCOUNT_POINT_COLOR = PRIMARY_ACCOUNT_POINT_COLOR; + BankSceneModel.COMPARISON_ACCOUNT_POINT_COLOR = COMPARISON_ACCOUNT_POINT_COLOR; + class Account { constructor( initialBalance = 0 ) { diff --git a/js/generic/view/NLIGenericScreenView.js b/js/generic/view/NLIGenericScreenView.js index c31a523..28f98c7 100644 --- a/js/generic/view/NLIGenericScreenView.js +++ b/js/generic/view/NLIGenericScreenView.js @@ -34,7 +34,7 @@ define( require => { const CHECKBOX_FONT = new PhetFont( 16 ); const CHECKBOX_DILATION = 6; const ARROW_ICON_LENGTH = 40; - const COMBO_BOX_FONT = new PhetFont( 14 ); + const COMBO_BOX_FONT = new PhetFont( 16 ); const ORIENTATION_BUTTON_DILATION = 2; // strings