1
0
Fork 0
mirror of https://github.com/Sonarr/Sonarr synced 2025-03-06 03:34:04 +00:00
Sonarr/NzbDrone.Backbone/Shared/AutoComplete.js

21 lines
556 B
JavaScript
Raw Normal View History

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