Skip to content

Commit 45ca20f

Browse files
committed
Update data naming for Effects. Partial fix for #7810
1 parent 6d20d14 commit 45ca20f

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

ui/jquery.effects.core.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -159,7 +159,7 @@ var classAnimationActions = [ "add", "remove", "toggle" ],
159159
padding: 1
160160
},
161161
// prefix used for storing data on .data()
162-
dataSpace = "ec.storage.";
162+
dataSpace = "ui-effects-";
163163

164164
$.each([ "borderLeftStyle", "borderRightStyle", "borderBottomStyle", "borderTopStyle" ], function( _, prop ) {
165165
$.fx.step[ prop ] = function( fx ) {
@@ -689,7 +689,7 @@ $.extend( baseEasings, {
689689
Bounce: function ( p ) {
690690
var pow2,
691691
bounce = 4;
692-
692+
693693
while ( p < ( ( pow2 = Math.pow( 2, --bounce ) ) - 1 ) / 11 ) {}
694694
return 1 / Math.pow( 4, 3 - bounce ) - 7.5625 * Math.pow( ( pow2 * 3 - 2 ) / 22 - p, 2 );
695695
}

0 commit comments

Comments
 (0)