1
0
Fork 0
mirror of https://github.com/Radarr/Radarr synced 2024-12-28 10:51:48 +00:00
Radarr/NzbDrone.Backbone/Shared/AutoComplete.js

21 lines
556 B
JavaScript
Raw Normal View History

2013-02-15 23:38:53 +00:00
define(['app'], function () {
2013-02-15 23:38:53 +00:00
$.fn.autoComplete = function (resource) {
$(this).typeahead({
2013-02-15 23:38:53 +00:00
source: function (filter, callback) {
$.ajax({
2013-02-15 23:38:53 +00:00
url: NzbDrone.Constants.ApiRoot + resource,
dataType: "json",
2013-02-15 23:38:53 +00:00
type: "GET",
data: { query: filter },
success: function (data) {
2013-02-15 23:38:53 +00:00
callback(data);
}
});
},
minLength: 3
});
};
});