typos
This commit is contained in:
parent
c615da5c15
commit
cd9a26dab5
2 changed files with 2 additions and 2 deletions
|
@ -47,7 +47,7 @@ Ox.Button = function(options, self) {
|
||||||
type: self.options.type == 'text' ? 'button' : 'image'
|
type: self.options.type == 'text' ? 'button' : 'image'
|
||||||
}, self.options.disabled ? {
|
}, self.options.disabled ? {
|
||||||
disabled: 'disabled'
|
disabled: 'disabled'
|
||||||
} : {})
|
} : {}))
|
||||||
.addClass('OxButton Ox' + Ox.toTitleCase(self.options.size) +
|
.addClass('OxButton Ox' + Ox.toTitleCase(self.options.size) +
|
||||||
(self.options.disabled ? ' OxDisabled': '') +
|
(self.options.disabled ? ' OxDisabled': '') +
|
||||||
(self.options.selected ? ' OxSelected': '') +
|
(self.options.selected ? ' OxSelected': '') +
|
||||||
|
|
|
@ -209,7 +209,7 @@ Ox.Input = function(options, self) {
|
||||||
type: self.options.type == 'password' ? 'password' : 'text'
|
type: self.options.type == 'password' ? 'password' : 'text'
|
||||||
}, self.options.disabled ? {
|
}, self.options.disabled ? {
|
||||||
disabled: 'disabled'
|
disabled: 'disabled'
|
||||||
} : {})
|
} : {}))
|
||||||
.css(Ox.extend({
|
.css(Ox.extend({
|
||||||
width: self.inputWidth + 'px',
|
width: self.inputWidth + 'px',
|
||||||
textAlign: self.options.textAlign
|
textAlign: self.options.textAlign
|
||||||
|
|
Loading…
Reference in a new issue