1
0
Fork 0
mirror of https://github.com/Radarr/Radarr synced 2025-02-04 13:53:08 +00:00
Radarr/NzbDrone.Web/_backboneApp/Shared/AutoComplete.js
2013-02-15 16:52:50 -08:00

16 lines
No EOL
430 B
JavaScript

$.fn.folderAutoComplete = function () {
$(this).typeahead({
source: function (query, process) {
$.ajax({
url: '/api/directories',
dataType: "json",
type: "POST",
data: { query: query },
success: function (data) {
process(data);
}
});
},
minLength: 3
});
}