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(
|
||||
that.$title = Ox.$('<td>')
|
||||
that.$title = $('<td>')
|
||||
.addClass('OxCell OxTitle')
|
||||
.css(
|
||||
self.options.maxWidth
|
||||
|
@ -98,8 +98,7 @@ Ox.MenuItem = function(options, self) {
|
|||
)
|
||||
.html(
|
||||
self.options.file
|
||||
?
|
||||
that.$button = Ox.FileButton(Ox.extend({
|
||||
? that.$button = Ox.FileButton(Ox.extend({
|
||||
disabled: self.options.disabled,
|
||||
title: self.options.title[0]
|
||||
}, self.options.file)).bindEvent({
|
||||
|
|
Loading…
Reference in a new issue