]> source.dussan.org Git - jquery-ui.git/commitdiff
Effects: Fixing call to outerHeight/Width in slide effect for compat with 1.8 core
authorCorey Frang <gnarf@gnarf.net>
Fri, 20 Jul 2012 23:51:40 +0000 (18:51 -0500)
committerCorey Frang <gnarf@gnarf.net>
Fri, 20 Jul 2012 23:51:40 +0000 (18:51 -0500)
backport of ed64ccf

ui/jquery.effects.slide.js

index adcafdfbbd2eddd4b3841e40e4b0892e2a2e5447..5c7fc0e5d9e9a2151b9c384e6e6df42fa6b69014 100644 (file)
@@ -28,7 +28,7 @@ $.effects.slide = function(o) {
                $.effects.createWrapper(el).css({overflow:'hidden'}); // Create Wrapper
                var ref = (direction == 'up' || direction == 'down') ? 'top' : 'left';
                var motion = (direction == 'up' || direction == 'left') ? 'pos' : 'neg';
-               var distance = o.options.distance || (ref == 'top' ? el.outerHeight({margin:true}) : el.outerWidth({margin:true}));
+               var distance = o.options.distance || (ref == 'top' ? el.outerHeight( true ) : el.outerWidth( true ));
                if (mode == 'show') el.css(ref, motion == 'pos' ? (isNaN(distance) ? "-" + distance : -distance) : distance); // Shift
 
                // Animation