1
0
Fork 0
forked from 0x2620/oxjs

fix resizing behavior of lists sections

This commit is contained in:
rlx 2011-01-14 03:53:18 +00:00
commit 6cf02b4e61
2 changed files with 10 additions and 2 deletions

View file

@ -1623,7 +1623,6 @@ requires
.html(self.options.title)
.appendTo(that.$titlebar);
// fixme: should the following be a container?
that.$content = new Ox.Element()
.addClass('OxContent')
.css({
@ -7243,6 +7242,9 @@ requires
$.each(self.options.columns, function(i, v) { // fixme: can this go into a generic ox.js function?
// fixme: and can't these just remain undefined?
if (Ox.isUndefined(v.align)) {
v.align = 'left';
}
if (Ox.isUndefined(v.clickable)) {
v.clickable = false;
}