diff --git a/js/Animation.js b/js/Animation.js index c95bb80..47d842f 100644 --- a/js/Animation.js +++ b/js/Animation.js @@ -181,7 +181,7 @@ define( function( require ) { // A {number} is provided as a single argument to the emit callback, and represents how much "extra" time occurred // after the end of the animation. For example, if you have a 1-second animation and stepped it by 3 seconds, this // finished emitter would be called with 2 seconds. - this.finishEmitter = new Emitter( { validators: [ { validValue: 'number' } ] } ); + this.finishEmitter = new Emitter( { validators: [ { valueType: 'number' } ] } ); // @public {Emitter} - Fired when the animation is manually stopped (with stop()). Does NOT fire when it finishes // normally.