In MenuItem, use $, not Ox.$

This commit is contained in:
rolux 2014-01-16 05:15:01 +00:00
parent 654482832f
commit 1ab4634fa1

View file

@ -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({