Skip to content

Commit 38028f6

Browse files
committed
Autocomplete: Correcting readOnly from readonly - @scottgonzalez
1 parent 982b752 commit 38028f6

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

ui/jquery.ui.autocomplete.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -63,7 +63,7 @@ $.widget( "ui.autocomplete", {
6363
"aria-haspopup": "true"
6464
})
6565
.bind( "keydown.autocomplete", function( event ) {
66-
if ( self.options.disabled || self.element.prop( "readonly" ) ) {
66+
if ( self.options.disabled || self.element.prop( "readOnly" ) ) {
6767
suppressKeyPress = true;
6868
suppressInput = true;
6969
return;

0 commit comments

Comments
 (0)