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 43b2953 commit 1998491Copy full SHA for 1998491
src/jquery.autocomplete.js
@@ -219,6 +219,10 @@
219
onFocus: function () {
220
var that = this;
221
222
+ if (that.disabled) {
223
+ return;
224
+ }
225
+
226
that.fixPosition();
227
228
if (that.el.val().length >= that.options.minChars) {
@@ -270,7 +274,7 @@
270
274
'z-index': options.zIndex
271
275
});
272
276
273
- this.options = options;
277
+ this.options = options;
278
},
279
280
0 commit comments