This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/* | |
jQuery UI Autocomplete AutoFill extension | |
automatically fills in the input box when only one suggestion is to be shown | |
*/ | |
;(function($) { | |
$.extend($.ui.autocomplete.options, {autoFill: true}); | |
$.extend($.ui.autocomplete.prototype, { | |
_response_original: $.ui.autocomplete.prototype._response, |
NewerOlder