Browse Source

Fix typo in AnimationClip

Tristan VALCKE 8 years ago
parent
commit
a7a9edc240
1 changed files with 1 additions and 2 deletions
  1. 1 2
      src/animation/AnimationClip.js

+ 1 - 2
src/animation/AnimationClip.js

@@ -45,8 +45,7 @@ AnimationClip.prototype = {
 
 			var track = this.tracks[ i ];
 
-			duration = Math.max(
-					duration, track.times[ track.times.length - 1 ] );
+			duration = Math.max( duration, track.times[ track.times.length - 1 ] );
 
 		}