phetsims / color-vision

"Color Vision" is an educational simulation in HTML5, by PhET Interactive Simulations.
http://phet.colorado.edu/en/simulation/color-vision
GNU General Public License v3.0
1 stars 7 forks source link

don't change module names on import #50

Closed pixelzoom closed 10 years ago

pixelzoom commented 10 years ago

Don't change the name of something that you import. For example in RGBScreen:

var Constants = require( 'COLOR_VISION/ColorVisionConstants' );

This should be:

var ColorVisionConstants = require( 'COLOR_VISION/ColorVisionConstants' );

aaronsamuel137 commented 10 years ago

Straight forward change. Closing.