Fix for warning.

This commit is contained in:
Andrzej Kapolka 2014-02-24 13:19:32 -08:00
parent 8cb5c639fb
commit 40d9fffb7f

View file

@ -117,7 +117,7 @@ var hueAngle = 0;
var smoothedOffset;
function step() {
if (stateHistory.length == 0) {
if (stateHistory.length === 0) {
// start at a random position within the bounds, with a random velocity
position = randomVector(BOUNDS_MIN, BOUNDS_MAX);
do {