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

@ -154,7 +154,7 @@ Ox.Input = function(options, self) {
width: self.options.labelWidth
})
.css({
float: 'left', // fixme: use css rule
float: 'left' // fixme: use css rule
})
.click(function() {
// fixme: ???
@ -224,7 +224,7 @@ Ox.Input = function(options, self) {
width: self.inputWidth + 'px',
textAlign: self.options.textAlign
}, self.options.type == 'textarea' ? {
height: self.options.height - 6 + 'px',
height: self.options.height - 6 + 'px'
} : {})
)
.val(self.options.value)
@ -404,7 +404,7 @@ Ox.Input = function(options, self) {
});
if (!self.selectEventBound) {
self.$autocompleteMenu.bindEvent({
select: selectMenu,
select: selectMenu
});
self.selectEventBound = true;
}
@ -440,7 +440,7 @@ Ox.Input = function(options, self) {
})
.addClass('OxAutocompleteMenu')
.bindEvent({
click: clickMenu,
click: clickMenu
});
return menu;
}