diff --git a/source/Ox.UI/js/Form/Ox.Button.js b/source/Ox.UI/js/Form/Ox.Button.js index 8afc7537..612c88cc 100644 --- a/source/Ox.UI/js/Form/Ox.Button.js +++ b/source/Ox.UI/js/Form/Ox.Button.js @@ -47,7 +47,7 @@ Ox.Button = function(options, self) { type: self.options.type == 'text' ? 'button' : 'image' }, self.options.disabled ? { disabled: 'disabled' - } : {}) + } : {})) .addClass('OxButton Ox' + Ox.toTitleCase(self.options.size) + (self.options.disabled ? ' OxDisabled': '') + (self.options.selected ? ' OxSelected': '') + diff --git a/source/Ox.UI/js/Form/Ox.Input.js b/source/Ox.UI/js/Form/Ox.Input.js index 48e955d5..791626c4 100644 --- a/source/Ox.UI/js/Form/Ox.Input.js +++ b/source/Ox.UI/js/Form/Ox.Input.js @@ -209,7 +209,7 @@ Ox.Input = function(options, self) { type: self.options.type == 'password' ? 'password' : 'text' }, self.options.disabled ? { disabled: 'disabled' - } : {}) + } : {})) .css(Ox.extend({ width: self.inputWidth + 'px', textAlign: self.options.textAlign