1
0
Fork 0
mirror of https://github.com/Radarr/Radarr synced 2025-02-05 14:22:03 +00:00
Radarr/NzbDrone.Web/_backboneApp/Shared/AutoComplete.js
2013-02-15 16:52:58 -08:00

20 lines
538 B
JavaScript

define(['bootstrap'], function () {
$.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
});
};
});