From: Scott González Date: Fri, 30 Jan 2009 03:09:10 +0000 (+0000) Subject: Accordion: only animate height and padding. X-Git-Tag: 1.6rc6~15 X-Git-Url: https://source.dussan.org/?a=commitdiff_plain;h=18b42f45d5ee6816500464f7607e930fb2baf334;p=jquery-ui.git Accordion: only animate height and padding. --- diff --git a/ui/ui.accordion.js b/ui/ui.accordion.js index 5d976d8ee..4fa0869f3 100644 --- a/ui/ui.accordion.js +++ b/ui/ui.accordion.js @@ -401,9 +401,7 @@ $.extend($.ui.accordion, { overflow = options.toShow.css('overflow'), showProps = {}, hideProps = {}, - fxAttrs = [ "height", "marginTop", "marginBottom", "paddingTop", "paddingBottom", "borderTop", "borderBottom" ]; - // border animations break IE (only tested in IE6) - ($.browser.msie && fxAttrs.pop() && fxAttrs.pop()); + fxAttrs = [ "height", "paddingTop", "paddingBottom" ]; $.each(fxAttrs, function(i, prop) { hideProps[prop] = 'hide'; showProps[prop] = parseFloat(options.toShow.css(prop));