aboutsummaryrefslogtreecommitdiffstats
path: root/ui/ui.core.js
diff options
context:
space:
mode:
authorScott González <scott.gonzalez@gmail.com>2008-12-31 16:10:38 +0000
committerScott González <scott.gonzalez@gmail.com>2008-12-31 16:10:38 +0000
commitffbf789d2f8f5e916c33db3b2a9946dddc4fc0cb (patch)
treec2931b7dac7f7e856741118eb6cf5f2066019121 /ui/ui.core.js
parent00a7cc127a14e0e3100efcb7cb692eb6ff6b0758 (diff)
downloadjquery-ui-ffbf789d2f8f5e916c33db3b2a9946dddc4fc0cb.tar.gz
jquery-ui-ffbf789d2f8f5e916c33db3b2a9946dddc4fc0cb.zip
Core: Whitespace only.
Diffstat (limited to 'ui/ui.core.js')
-rw-r--r--ui/ui.core.js6
1 files changed, 4 insertions, 2 deletions
diff --git a/ui/ui.core.js b/ui/ui.core.js
index cbffa15ea..19274e7cc 100644
--- a/ui/ui.core.js
+++ b/ui/ui.core.js
@@ -367,8 +367,10 @@ $.widget.prototype = {
this.options[key] = value;
if (key == 'disabled') {
- this.element[value ? 'addClass' : 'removeClass'](
- this.widgetBaseClass + '-disabled' + ' ' + this.namespace + '-state-disabled')
+ this.element
+ [value ? 'addClass' : 'removeClass'](
+ this.widgetBaseClass + '-disabled' + ' ' +
+ this.namespace + '-state-disabled')
.attr("aria-disabled", value);
}
},