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; var marginTop;
self.options.collapsed = !self.options.collapsed; self.options.collapsed = !self.options.collapsed;
marginTop = self.options.collapsed ? -that.$content.height() : 0; marginTop = self.options.collapsed ? -that.$content.height() : 0;
!self.options.collapsed && that.css({ if (!self.options.collapsed) {
marginTop: -that.$content.height() + 'px' that.css({
}).show(); marginTop: -that.$content.height() + 'px'
});
that.$content.show();
}
that.$content.animate({ that.$content.animate({
marginTop: marginTop + 'px' marginTop: marginTop + 'px'
}, 250, function() { }, 250, function() {
self.options.collapsed && that.hide(); self.options.collapsed && that.$content.hide();
}); });
that.triggerEvent('toggle', { that.triggerEvent('toggle', {
collapsed: self.options.collapsed collapsed: self.options.collapsed