1
0
Fork 0
forked from 0x2620/oxjs

trailing comma removal,

This commit is contained in:
j 2012-05-26 15:48:19 +00:00
commit 68d50978ba
44 changed files with 87 additions and 87 deletions

View file

@ -324,7 +324,7 @@ Ox.Menu = function(options, self) {
},
parent: that,
side: 'right',
size: self.options.size,
size: self.options.size
});
}
} else {
@ -774,7 +774,7 @@ Ox.Menu = function(options, self) {
that.parent().length == 0 && that.appendTo(Ox.UI.$body);
that.css({
left: '-1000px',
top: '-1000px',
top: '-1000px'
}).show();
var offset = self.options.element.offset(),
width = self.options.element.outerWidth(),

View file

@ -66,7 +66,7 @@ Ox.MenuButton = function(options, self) {
id: self.options.id + 'Menu',
items: self.options.items,
maxWidth: self.options.maxWidth,
side: 'bottom', // FIXME: should be edge
side: 'bottom' // FIXME: should be edge
})
.bindEvent({
change: changeMenu,