diff options
author | gnarf <gnarf@gnarf.net> | 2011-04-04 15:43:47 -0500 |
---|---|---|
committer | gnarf <gnarf@gnarf.net> | 2011-05-01 06:18:31 -0500 |
commit | 668d28e30e04d63105f258a5608cf8e2a5a3b2fe (patch) | |
tree | a7158deeb1ec276aeb49135ed86507421d2342fb /ui | |
parent | 40ebb0f846ce4152751d963f9fde0a964eabb337 (diff) | |
download | jquery-ui-668d28e30e04d63105f258a5608cf8e2a5a3b2fe.tar.gz jquery-ui-668d28e30e04d63105f258a5608cf8e2a5a3b2fe.zip |
effects.bounce: removing the opti for duration, the normalizeArguments in core will ALWAYS set a duration, no need to default here
Diffstat (limited to 'ui')
-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 d329857c6..4ccf4c77d 100644 --- a/ui/jquery.effects.bounce.js +++ b/ui/jquery.effects.bounce.js @@ -30,7 +30,7 @@ $.effects.effect.bounce = function(o) { // number of internal animations anims = times * 2 + showhide, - speed = (o.duration || 250) / anims, + speed = o.duration / anims, easing = o.easing, // utility: |