Radarr/UI/Mixins/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
});
};
});