replacing tabs with spaces. no functional diffs here.

git-svn-id: http://svn.openlayers.org/trunk/openlayers@6673 dc9f47b5-9b13-0410-9fdd-eb0c1a62fdaf
This commit is contained in:
euzuro
2008-03-29 00:38:47 +00:00
parent d46f884201
commit 136a37bf2f
14 changed files with 106 additions and 106 deletions

View File

@@ -311,7 +311,7 @@ OpenLayers.Easing.Quad = {
*/
easeInOut: function(t, b, c, d) {
if ((t/=d/2) < 1) return c/2*t*t + b;
return -c/2 * ((--t)*(t-2) - 1) + b;
return -c/2 * ((--t)*(t-2) - 1) + b;
},
CLASS_NAME: "OpenLayers.Easing.Quad"