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 b607b77 commit c3f8177Copy full SHA for c3f8177
ui/autocomplete.js
@@ -334,6 +334,26 @@ $.widget( "ui.autocomplete", {
334
this.liveRegion.remove();
335
},
336
337
+ _elementsFromClassKey: function( classKey ) {
338
+ switch( classKey ) {
339
+ case "ui-autocomplete":
340
+ return this.menu.element;
341
+ case "ui-autocomplete-input":
342
+ return this.element;
343
+
344
+ // If the following class is not present on the widget, we chain up.
345
+ case "ui-autocomplete-loading":
346
+ if ( this.element.hasClass( "ui-autocomplete-loading" ) ) {
347
348
+ }
349
+ break;
350
+ default:
351
352
353
354
+ return this._superApply( arguments );
355
+ },
356
357
_setOption: function( key, value ) {
358
this._super( key, value );
359
if ( key === "source" ) {
0 commit comments