1
0
Fork 0
forked from 0x2620/oxjs

cosmetic changes

This commit is contained in:
rolux 2013-12-07 15:47:56 +01:00
commit 348d6d3aff

View file

@ -337,13 +337,8 @@ Ox.Input = function(options, self) {
.addClass('OxInput OxMedium Ox' + .addClass('OxInput OxMedium Ox' +
Ox.toTitleCase(self.options.style) + Ox.toTitleCase(self.options.style) +
' OxPlaceholder') ' OxPlaceholder')
.attr({ .attr({type: 'text'})
type: 'text' .css({width: self.inputWidth + 'px'})
})
.css({
//float: 'left',
width: self.inputWidth + 'px'
})
.val(self.options.placeholder) .val(self.options.placeholder)
.on({focus: focus}) .on({focus: focus})
.appendTo(that); .appendTo(that);