Skip to content

Commit

Permalink
Fix compiler error in math.
Browse files Browse the repository at this point in the history
  • Loading branch information
jverkoey committed Feb 27, 2010
1 parent a7447b6 commit fb1152f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion dev/math/namespace.math.js
Expand Up @@ -37,7 +37,7 @@ Breeze.Math.chopRemainder = function(x) {
* @return {number} * @return {number}
*/ */
Breeze.Math.easeIn = function(t) { Breeze.Math.easeIn = function(t) {
return x * x; return t * t;
}; };


/** /**
Expand Down

0 comments on commit fb1152f

Please sign in to comment.