We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent a202248 commit 08a750aCopy full SHA for 08a750a
ui/jquery.ui.button.js
@@ -184,7 +184,7 @@ $.widget( "ui.button", {
184
if ( this.element.is(":radio") ) {
185
this.type = "radio";
186
} else {
187
- if (this.element.is("input") ) {
+ if ( this.element.is("input") ) {
188
this.type = "input";
189
190
this.type = "button";
@@ -197,7 +197,7 @@ $.widget( "ui.button", {
197
// is disconnected from the DOM
198
this.buttonElement = this.element.parents().last()
199
.find( "[for=" + this.element.attr("id") + "]" );
200
- this.element.addClass('ui-helper-hidden-accessible');
+ this.element.addClass( "ui-helper-hidden-accessible" );
201
202
var checked = this.element.is( ":checked" );
203
if ( checked ) {
0 commit comments