In MenuItem, use $, not Ox.$
This commit is contained in:
parent
654482832f
commit
1ab4634fa1
1 changed files with 2 additions and 3 deletions
|
@ -85,7 +85,7 @@ Ox.MenuItem = function(options, self) {
|
||||||
)
|
)
|
||||||
)
|
)
|
||||||
.append(
|
.append(
|
||||||
that.$title = Ox.$('<td>')
|
that.$title = $('<td>')
|
||||||
.addClass('OxCell OxTitle')
|
.addClass('OxCell OxTitle')
|
||||||
.css(
|
.css(
|
||||||
self.options.maxWidth
|
self.options.maxWidth
|
||||||
|
@ -98,8 +98,7 @@ Ox.MenuItem = function(options, self) {
|
||||||
)
|
)
|
||||||
.html(
|
.html(
|
||||||
self.options.file
|
self.options.file
|
||||||
?
|
? that.$button = Ox.FileButton(Ox.extend({
|
||||||
that.$button = Ox.FileButton(Ox.extend({
|
|
||||||
disabled: self.options.disabled,
|
disabled: self.options.disabled,
|
||||||
title: self.options.title[0]
|
title: self.options.title[0]
|
||||||
}, self.options.file)).bindEvent({
|
}, self.options.file)).bindEvent({
|
||||||
|
|
Loading…
Reference in a new issue