We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent af35f0b commit 129d5c7Copy full SHA for 129d5c7
ui/jquery.effects.blind.js
@@ -31,7 +31,12 @@ $.effects.effect.blind = function( o ) {
31
animation = {},
32
wrapper, distance;
33
34
- $.effects.save( el, props );
+ // if already wrapped, the wrapper's properties are my property. #6245
35
+ if ( el.parent().is( ".ui-effects-wrapper" ) ) {
36
+ $.effects.save( el.parent(), props );
37
+ } else {
38
+ $.effects.save( el, props );
39
+ }
40
el.show();
41
wrapper = $.effects.createWrapper( el ).css({
42
overflow: "hidden"
0 commit comments