diff options
author | rozwell <rozwell69@gmail.com> | 2012-01-05 11:43:51 -0600 |
---|---|---|
committer | Corey Frang <gnarf@gnarf.net> | 2012-01-05 11:43:51 -0600 |
commit | 48659c643f68b5fc070f122255b7c73b913f0281 (patch) | |
tree | e40ed3bade13f3b1a3192607fe4b466a30ff8882 /ui/jquery.effects.blind.js | |
parent | 85348eeebed3521b5eea78d8930ee086c08cd62e (diff) | |
download | jquery-ui-48659c643f68b5fc070f122255b7c73b913f0281.tar.gz jquery-ui-48659c643f68b5fc070f122255b7c73b913f0281.zip |
Effects: Blind effect bugfix - Pull Request #563 - No Ticket
Diffstat (limited to 'ui/jquery.effects.blind.js')
-rw-r--r-- | ui/jquery.effects.blind.js | 10 |
1 files changed, 6 insertions, 4 deletions
diff --git a/ui/jquery.effects.blind.js b/ui/jquery.effects.blind.js index 5f86bed7b..abcc9eed8 100644 --- a/ui/jquery.effects.blind.js +++ b/ui/jquery.effects.blind.js @@ -27,7 +27,7 @@ $.effects.effect.blind = function( o, done ) { motion = rpositivemotion.test( direction ), animation = {}, show = mode === "show", - wrapper, distance; + wrapper, distance, margin; // if already wrapped, the wrapper's properties are my property. #6245 if ( el.parent().is( ".ui-effects-wrapper" ) ) { @@ -41,21 +41,23 @@ $.effects.effect.blind = function( o, done ) { }); distance = wrapper[ ref ](); + margin = parseInt(wrapper.css(ref2)); animation[ ref ] = show ? distance : 0; if ( !motion ) { el .css( vertical ? "bottom" : "right", 0 ) - .css( vertical ? "top" : "left", "" ) + .css( vertical ? "top" : "left", "auto" ) .css({ position: "absolute" }); - animation[ ref2 ] = show ? 0 : distance; + + animation[ ref2 ] = show ? margin : distance + margin; } // start at 0 if we are showing if ( show ) { wrapper.css( ref, 0 ); if ( ! motion ) { - wrapper.css( ref2, distance ); + wrapper.css( ref2, margin + distance ); } } |