aboutsummaryrefslogtreecommitdiffstats
path: root/ui/jquery.effects.core.js
diff options
context:
space:
mode:
authorJörn Zaefferer <joern.zaefferer@gmail.com>2012-03-01 13:42:42 +0100
committerJörn Zaefferer <joern.zaefferer@gmail.com>2012-03-01 13:42:42 +0100
commit45ca20fa33204e2304295f2fb194f59c821b1512 (patch)
tree270e4a54ae2c1d1dbacda1e394498f644d160e78 /ui/jquery.effects.core.js
parent6d20d1463b7f5bd858a50247d6424af934c1ccee (diff)
downloadjquery-ui-45ca20fa33204e2304295f2fb194f59c821b1512.tar.gz
jquery-ui-45ca20fa33204e2304295f2fb194f59c821b1512.zip
Update data naming for Effects. Partial fix for #7810
Diffstat (limited to 'ui/jquery.effects.core.js')
-rw-r--r--ui/jquery.effects.core.js4
1 files changed, 2 insertions, 2 deletions
diff --git a/ui/jquery.effects.core.js b/ui/jquery.effects.core.js
index b28e4c4ee..bc69c9477 100644
--- a/ui/jquery.effects.core.js
+++ b/ui/jquery.effects.core.js
@@ -159,7 +159,7 @@ var classAnimationActions = [ "add", "remove", "toggle" ],
padding: 1
},
// prefix used for storing data on .data()
- dataSpace = "ec.storage.";
+ dataSpace = "ui-effects-";
$.each([ "borderLeftStyle", "borderRightStyle", "borderBottomStyle", "borderTopStyle" ], function( _, prop ) {
$.fx.step[ prop ] = function( fx ) {
@@ -689,7 +689,7 @@ $.extend( baseEasings, {
Bounce: function ( p ) {
var pow2,
bounce = 4;
-
+
while ( p < ( ( pow2 = Math.pow( 2, --bounce ) ) - 1 ) / 11 ) {}
return 1 / Math.pow( 4, 3 - bounce ) - 7.5625 * Math.pow( ( pow2 * 3 - 2 ) / 22 - p, 2 );
}