Skip to content

Commit 021967b

Browse files
committed
Fix so DateTime value is returned to the input field correctly.
1 parent 35cdf9a commit 021967b

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

jquery-ui-timepicker-addon.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -529,7 +529,7 @@ $.extend(Timepicker.prototype, {
529529
this.$altInput.val(this.formattedDateTime);
530530
}
531531
}
532-
else formattedDateTime += ' ' + this.formattedTime;
532+
formattedDateTime += ' ' + this.formattedTime;
533533
}
534534

535535
this.formattedDateTime = formattedDateTime;

0 commit comments

Comments
 (0)