From cd9a26dab5b4168722ad2c54e9485ea481e54d33 Mon Sep 17 00:00:00 2001 From: rlx <0x0073@0x2620.org> Date: Thu, 6 Oct 2011 04:35:02 +0000 Subject: [PATCH] typos --- source/Ox.UI/js/Form/Ox.Button.js | 2 +- source/Ox.UI/js/Form/Ox.Input.js | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) 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