Skip to content

Commit 34d9e03

Browse files
committed
effect.bounce: fixing default distance to be 1/3 the size of the bouncing box - thx @scott_gonzalez for catching this
1 parent 6190416 commit 34d9e03

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

ui/jquery.effects.bounce.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ $.effects.effect.bounce = function(o) {
2323
hide = mode === "hide",
2424
show = mode === "show",
2525
direction = o.direction || "up",
26-
distance = o.distance || 20,
26+
distance = o.distance,
2727
times = o.times || 5,
2828

2929
// number of internal animations

0 commit comments

Comments
 (0)