diff options
author | gnarf <gnarf@gnarf.net> | 2011-05-03 08:39:02 -0500 |
---|---|---|
committer | gnarf <gnarf@gnarf.net> | 2011-05-03 08:39:02 -0500 |
commit | 34d9e038bd03dcc8667b1ac12b687eec2209270f (patch) | |
tree | 85d2f3ebd5dab8642bbb3690212e3f224e4635e2 /ui/jquery.effects.bounce.js | |
parent | 61904162cf4f81330c23a5ea84fc49c62a3ce4ac (diff) | |
download | jquery-ui-34d9e038bd03dcc8667b1ac12b687eec2209270f.tar.gz jquery-ui-34d9e038bd03dcc8667b1ac12b687eec2209270f.zip |
effect.bounce: fixing default distance to be 1/3 the size of the bouncing box - thx @scott_gonzalez for catching this
Diffstat (limited to 'ui/jquery.effects.bounce.js')
-rw-r--r-- | ui/jquery.effects.bounce.js | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/ui/jquery.effects.bounce.js b/ui/jquery.effects.bounce.js index 1ffd5ed5a..550f433b9 100644 --- a/ui/jquery.effects.bounce.js +++ b/ui/jquery.effects.bounce.js @@ -23,7 +23,7 @@ $.effects.effect.bounce = function(o) { hide = mode === "hide", show = mode === "show", direction = o.direction || "up", - distance = o.distance || 20, + distance = o.distance, times = o.times || 5, // number of internal animations |