|
|
@ -504,9 +504,8 @@ $.fn.accordion.settings = { |
|
|
|
|
|
|
|
// Adds easing
|
|
|
|
$.extend( $.easing, { |
|
|
|
easeInOutQuint: function (x, t, b, c, d) { |
|
|
|
if ((t/=d/2) < 1) return c/2*t*t*t*t*t + b; |
|
|
|
return c/2*((t-=2)*t*t*t*t + 2) + b; |
|
|
|
easeOutQuint: function (x, t, b, c, d) { |
|
|
|
return c*((t=t/d-1)*t*t*t*t + 1) + b; |
|
|
|
} |
|
|
|
}); |
|
|
|
|
|
|
|