fix collapsepanel

This commit is contained in:
rolux 2012-01-02 19:46:08 +05:30
parent be06c433d1
commit 038493d52b

View file

@ -88,13 +88,16 @@ Ox.CollapsePanel = function(options, self) {
var marginTop;
self.options.collapsed = !self.options.collapsed;
marginTop = self.options.collapsed ? -that.$content.height() : 0;
!self.options.collapsed && that.css({
if (!self.options.collapsed) {
that.css({
marginTop: -that.$content.height() + 'px'
}).show();
});
that.$content.show();
}
that.$content.animate({
marginTop: marginTop + 'px'
}, 250, function() {
self.options.collapsed && that.hide();
self.options.collapsed && that.$content.hide();
});
that.triggerEvent('toggle', {
collapsed: self.options.collapsed