forked from 0x2620/oxjs
some fixed for text lists with column titles that are images
This commit is contained in:
parent
72676ed2bb
commit
0840d0b436
3 changed files with 23 additions and 16 deletions
|
|
@ -72,7 +72,9 @@ Ox.MenuItem = function(options, self) {
|
|||
that.$title = $('<td>', {
|
||||
'class': 'OxCell OxTitle',
|
||||
css: self.options.maxWidth ? {maxWidth: self.options.maxWidth} : {},
|
||||
html: self.options.title[0]
|
||||
html: Ox.isString(self.options.title[0])
|
||||
? self.options.title[0]
|
||||
: $('<div>').html(self.options.title[0]).html()
|
||||
})
|
||||
)
|
||||
.append(
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue