From 052fd48992a9fb389d6011597632dbea495f5b17 Mon Sep 17 00:00:00 2001 From: zepumph Date: Thu, 24 Oct 2019 20:55:55 -0800 Subject: [PATCH] fix bad-sim-text lint error, https://github.com/phetsims/chipper/issues/791 https://github.com/phetsims/number-line-integers/issues/37 --- js/explore/model/BankSceneModel.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/js/explore/model/BankSceneModel.js b/js/explore/model/BankSceneModel.js index a1a985b..6dcba28 100644 --- a/js/explore/model/BankSceneModel.js +++ b/js/explore/model/BankSceneModel.js @@ -166,9 +166,9 @@ define( require => { } // statics - colors used for primary and comparison account points - static get PRIMARY_ACCOUNT_POINT_COLOR() { return PRIMARY_ACCOUNT_POINT_COLOR; } + 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; } + static get COMPARISON_ACCOUNT_POINT_COLOR() { return COMPARISON_ACCOUNT_POINT_COLOR; } // eslint-disable-line bad-sim-text } class Account {