Skip to content
Permalink
Browse files
Accordion - Removed easeslide animation. Fixes #4204 - Easeslide does…
… not work (Accordion).
  • Loading branch information
scottgonzalez committed Apr 18, 2009
1 parent 6ca335f commit 1578835
Showing 1 changed file with 1 addition and 7 deletions.
@@ -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
});
}
}
});

0 comments on commit 1578835

Please sign in to comment.