]> source.dussan.org Git - jquery-ui.git/commitdiff
effect.bounce: ignoring the margins for the height calc
authorgnarf <gnarf@gnarf.net>
Tue, 3 May 2011 13:45:21 +0000 (08:45 -0500)
committergnarf <gnarf@gnarf.net>
Tue, 3 May 2011 13:45:21 +0000 (08:45 -0500)
ui/jquery.effects.bounce.js

index 550f433b9bfebdac805b5198173600b5cc9587e9..f1093839f5d609b9e41f37e8f8d96621961f9705 100644 (file)
@@ -53,7 +53,7 @@ $.effects.effect.bounce = function(o) {
 
                // default distance for the BIGGEST bounce is the outer Distance / 3
                if ( !distance ) {
-                       distance = el[ ref === "top" ? "outerHeight" : "outerWidth" ]({ margin:true }) / 3;
+                       distance = el[ ref === "top" ? "outerHeight" : "outerWidth" ]() / 3;
                }
 
                if ( show ) {