mirror of https://github.com/Radarr/Radarr
21 lines
527 B
JavaScript
21 lines
527 B
JavaScript
define([], 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
|
|
});
|
|
};
|
|
|
|
});
|