]> source.dussan.org Git - jquery-ui.git/commitdiff
Update data naming for Effects. Partial fix for #7810
authorJörn Zaefferer <joern.zaefferer@gmail.com>
Thu, 1 Mar 2012 12:42:42 +0000 (13:42 +0100)
committerJörn Zaefferer <joern.zaefferer@gmail.com>
Thu, 1 Mar 2012 12:42:42 +0000 (13:42 +0100)
ui/jquery.effects.core.js

index b28e4c4ee9f7055080f0741f42f031cae5e9aec0..bc69c9477cb959a7d978937aa7797bf720e3d97c 100644 (file)
@@ -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 );
        }