Skip to content

Commit

Permalink
remove passThroughCount query param, see #333
Browse files Browse the repository at this point in the history
  • Loading branch information
jessegreenberg committed Apr 21, 2021
1 parent 11839dd commit 51fc698
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions js/moleculesandlight/view/ActiveMoleculeAlertManager.js
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,6 @@
import StringUtils from '../../../../phetcommon/js/util/StringUtils.js';
import MovementDescriber from '../../../../scenery-phet/js/accessibility/describers/MovementDescriber.js';
import Utterance from '../../../../utterance-queue/js/Utterance.js';
import MoleculesAndLightQueryParameters from '../../common/MoleculesAndLightQueryParameters.js';
import moleculesAndLightStrings from '../../moleculesAndLightStrings.js';
import moleculesAndLight from '../../moleculesAndLight.js';
import PhotonTarget from '../../photon-absorption/model/PhotonTarget.js';
Expand Down Expand Up @@ -49,7 +48,9 @@ const photonPassesString = moleculesAndLightStrings.a11y.photonPasses;
const photonsPassingString = moleculesAndLightStrings.a11y.photonsPassing;

// constants
const PASS_THROUGH_COUNT_BEFORE_DESCRIPTION = MoleculesAndLightQueryParameters.passThroughCount;
// Number of "pass through" events before we alert that no absorptions are taking place in the case of molecule/photon
// pair that has no absorption strategy. See member variable passThroughCount.
const PASS_THROUGH_COUNT_BEFORE_DESCRIPTION = 5;


// constants
Expand Down

0 comments on commit 51fc698

Please sign in to comment.