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 c2ed7a3 commit a595202Copy full SHA for a595202
ui/datepicker.js
@@ -251,7 +251,7 @@ var widget = $.widget( "ui.datepicker", {
251
this._setHiddenPicker();
252
this._hide( this.calendar, this.options.hide );
253
254
- this.element.attr( "tabindex" , 0 );
+ this.element.attr( "tabindex", 0 );
255
256
this.isOpen = false;
257
this._trigger( "close", event );
@@ -270,7 +270,7 @@ var widget = $.widget( "ui.datepicker", {
270
271
value: function( value ) {
272
if ( arguments.length ) {
273
- this.valueAsDate( Globalize.parseDate( value , this.options.dateFormat ) );
+ this.valueAsDate( Globalize.parseDate( value, this.options.dateFormat ) );
274
} else {
275
return this._getParsedValue() ? this.element.val() : null;
276
}
0 commit comments