forked from 0x2620/oxjs
fix resizing behavior of lists sections
This commit is contained in:
parent
2a4703b0b5
commit
6cf02b4e61
2 changed files with 10 additions and 2 deletions
|
|
@ -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;
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue