diff --git a/source/Ox.UI/js/Menu/MenuItem.js b/source/Ox.UI/js/Menu/MenuItem.js
index 1906005f..8dab61d1 100644
--- a/source/Ox.UI/js/Menu/MenuItem.js
+++ b/source/Ox.UI/js/Menu/MenuItem.js
@@ -85,7 +85,7 @@ Ox.MenuItem = function(options, self) {
)
)
.append(
- that.$title = Ox.$('
')
+ that.$title = $(' | ')
.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({
|