Core: Whitespace only.

This commit is contained in:
Scott González
2008-12-31 16:10:38 +00:00
parent 00a7cc127a
commit ffbf789d2f

View File

@@ -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);
}
},