diff options
author | Scott González <scott.gonzalez@gmail.com> | 2009-04-18 02:32:11 +0000 |
---|---|---|
committer | Scott González <scott.gonzalez@gmail.com> | 2009-04-18 02:32:11 +0000 |
commit | 15788355faa24262a62c5883af40e41239ef6021 (patch) | |
tree | f97929220ff2f9e8ba8e89b6bc3aade666cde1a8 | |
parent | 6ca335f94ca6a075be608de99016577e78afb3b5 (diff) | |
download | jquery-ui-15788355faa24262a62c5883af40e41239ef6021.tar.gz jquery-ui-15788355faa24262a62c5883af40e41239ef6021.zip |
Accordion - Removed easeslide animation. Fixes #4204 - Easeslide does not work (Accordion).
-rw-r--r-- | ui/ui.accordion.js | 8 |
1 files changed, 1 insertions, 7 deletions
diff --git a/ui/ui.accordion.js b/ui/ui.accordion.js index 42ac3f082..baf6e9f9b 100644 --- a/ui/ui.accordion.js +++ b/ui/ui.accordion.js @@ -335,7 +335,7 @@ $.widget("ui.accordion", { duration = o.duration, easing = o.animated; - if (easing && !$.ui.accordion.animations[easing] && !$.easing[easing]) { + if (easing && !animations[easing] && !$.easing[easing]) { easing = 'slide'; } if (!animations[easing]) { @@ -472,12 +472,6 @@ $.extend($.ui.accordion, { easing: options.down ? "easeOutBounce" : "swing", duration: options.down ? 1000 : 200 }); - }, - easeslide: function(options) { - this.slide(options, { - easing: "easeinout", - duration: 700 - }); } } }); |