Closed pixelzoom closed 8 years ago
See https://github.com/phetsims/beers-law-lab/issues/86
Examples of anti pattern (not exhaustive):
CountsToChargeProblemView: this.chargeAnswer = new Property( 0 ); CountsToMassNumberProblemView: this.massNumberAnswer = new Property( 0 ); InteractiveSymbolNode: thisNode.protonCount = new Property( options.interactiveProtonCount ? 0 : numberAtom.protonCount ); InteractiveSymbolNode: thisNode.massNumber = new Property( options.interactiveMassNumber ? 0 : numberAtom.massNumber ); InteractiveSymbolNode: thisNode.charge = new Property( options.interactiveCharge ? 0 : numberAtom.charge );
@aadish is currently working on cleanup of this simulation, assigning to him for resolution.
fixed, closing
See https://github.com/phetsims/beers-law-lab/issues/86
Examples of anti pattern (not exhaustive):
CountsToChargeProblemView: this.chargeAnswer = new Property( 0 ); CountsToMassNumberProblemView: this.massNumberAnswer = new Property( 0 ); InteractiveSymbolNode: thisNode.protonCount = new Property( options.interactiveProtonCount ? 0 : numberAtom.protonCount ); InteractiveSymbolNode: thisNode.massNumber = new Property( options.interactiveMassNumber ? 0 : numberAtom.massNumber ); InteractiveSymbolNode: thisNode.charge = new Property( options.interactiveCharge ? 0 : numberAtom.charge );